Enum Class NodeOperationalStateType

java.lang.Object
java.lang.Enum<NodeOperationalStateType>
com.evolveum.midpoint.xml.ns._public.common.common_3.NodeOperationalStateType
All Implemented Interfaces:
TypeSafeEnum, Serializable, Comparable<NodeOperationalStateType>, Constable

public enum NodeOperationalStateType extends Enum<NodeOperationalStateType> implements TypeSafeEnum
Basic node operational state: whether it is up (e.g. accepting REST queries), or it is down (known to be turned off or just not checking-in for a longer time), or starting. Does NOT indicate anything about the scheduler state.
  • Enum Constant Details

    • UP

      public static final NodeOperationalStateType UP
      Node is up and should respond to REST queries.
    • DOWN

      public static final NodeOperationalStateType DOWN
      Node is down. Either it was turned off or it has not checked in for a longer time. There's no point in trying to contact it via REST.
    • STARTING

      public static final NodeOperationalStateType STARTING
      Node is starting. It is expected it will be alive soon but should not be contacted via REST yet.
  • Method Details

    • values

      public static NodeOperationalStateType[] 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 NodeOperationalStateType 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
    • value

      public String value()
      Description copied from interface: TypeSafeEnum
      Returns enum value defined as in schema.
      Specified by:
      value in interface TypeSafeEnum
      Returns:
    • fromValue

      public static NodeOperationalStateType fromValue(String v)