Enum Class IntervalUnit

java.lang.Object
java.lang.Enum<IntervalUnit>
com.gentics.contentnode.rest.model.scheduler.IntervalUnit
All Implemented Interfaces:
Serializable, Comparable<IntervalUnit>, java.lang.constant.Constable

public enum IntervalUnit extends Enum<IntervalUnit>
Interval units for schedules.
  • Enum Constant Details

    • minute

      public static final IntervalUnit minute
      Execute every X mintues.
    • hour

      public static final IntervalUnit hour
      Execute every X hours.
    • day

      public static final IntervalUnit day
      Execute every X days.
    • week

      public static final IntervalUnit week
      Execute every X weeks.
    • month

      public static final IntervalUnit month
      Execute every X months.
  • Method Details

    • values

      public static IntervalUnit[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static IntervalUnit valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null