Enum Class ScheduledTaskState

java.lang.Object
java.lang.Enum<ScheduledTaskState>
com.suncode.pwfl.administration.scheduledtask.info.execution.ScheduledTaskState
All Implemented Interfaces:
Serializable, Comparable<ScheduledTaskState>, Constable

public enum ScheduledTaskState extends Enum<ScheduledTaskState>
  • Enum Constant Details

    • NOT_STARTED

      public static final ScheduledTaskState NOT_STARTED
      Zadanie nie zostało jeszcze uruchomione.
    • RUNNING

      public static final ScheduledTaskState RUNNING
      Zadanie jest w trakcie wykonywania.
    • CANCELLING

      public static final ScheduledTaskState CANCELLING
      Zadanie jest w trakcie jego przerywania.
    • DONE

      public static final ScheduledTaskState DONE
      Zadanie zostało już wykonane.
  • Method Details

    • values

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