Enum Class ScheduleType

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

public enum ScheduleType extends Enum<ScheduleType>
Types of schedules
  • Enum Constant Details

    • once

      public static final ScheduleType once
      The task is executed once at a given date/time
    • interval

      public static final ScheduleType interval
      The task is executed at a given interval
    • followup

      public static final ScheduleType followup
      The task is executed following one or multiple other tasks
    • manual

      public static final ScheduleType manual
      The task is executed manually
  • Method Details

    • values

      public static ScheduleType[] 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 ScheduleType 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