Enum Class RunState

java.lang.Object
java.lang.Enum<RunState>
org.frankframework.util.RunState
All Implemented Interfaces:
Serializable, Comparable<RunState>, Constable

public enum RunState extends Enum<RunState>
Enumeration of states for IManagable
Author:
Gerrit van Brakel
  • Enum Constant Details

    • ERROR

      public static final RunState ERROR
    • STARTING

      public static final RunState STARTING
    • EXCEPTION_STARTING

      public static final RunState EXCEPTION_STARTING
    • STARTED

      public static final RunState STARTED
    • STOPPING

      public static final RunState STOPPING
    • EXCEPTION_STOPPING

      public static final RunState EXCEPTION_STOPPING
    • STOPPED

      public static final RunState STOPPED
  • Method Details

    • values

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