Enum Class Lifecycle.State

java.lang.Object
java.lang.Enum<Lifecycle.State>
com.quietterminal.neon.core.Lifecycle.State
All Implemented Interfaces:
Serializable, Comparable<Lifecycle.State>, Constable
Enclosing interface:
Lifecycle

public static enum Lifecycle.State extends Enum<Lifecycle.State>
Lifecycle states for a Neon component.
  • Enum Constant Details

    • CREATED

      public static final Lifecycle.State CREATED
      Initial state after construction.
    • STARTING

      public static final Lifecycle.State STARTING
      Transitioning from CREATED to RUNNING.
    • RUNNING

      public static final Lifecycle.State RUNNING
      Fully started and processing.
    • STOPPING

      public static final Lifecycle.State STOPPING
      Transitioning from RUNNING to STOPPED.
    • STOPPED

      public static final Lifecycle.State STOPPED
      Cleanly shut down.
    • FAILED

      public static final Lifecycle.State FAILED
      An unrecoverable error occurred during a state transition.
  • Method Details

    • values

      public static Lifecycle.State[] 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 Lifecycle.State 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