Enum Class RemoteTaskType

java.lang.Object
java.lang.Enum<RemoteTaskType>
de.espirit.firstspirit.access.schedule.RemoteTaskType
All Implemented Interfaces:
Serializable, Comparable<RemoteTaskType>, Constable

public enum RemoteTaskType extends Enum<RemoteTaskType>
Remote task type - a cluster node is configured to execute a set of types and a task is of a specific type. Only if these types matches the task can be executed on the specific cluster node.
Since:
4.1.36
See Also:
  • Enum Constant Details

    • NONE

      public static final RemoteTaskType NONE
      Marks that no task may be executed.
      Since:
      4.1.36
    • BACKUP

      public static final RemoteTaskType BACKUP
      Marks that backup tasks may be executed.
      Since:
      4.1.36
    • GENERATE

      public static final RemoteTaskType GENERATE
      Marks that generation tasks may be executed.
      Since:
      4.1.36
  • Method Details

    • values

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