Enum Class AdapterState

java.lang.Object
java.lang.Enum<AdapterState>
com.espertech.esper.runtime.client.util.AdapterState
All Implemented Interfaces:
Serializable, Comparable<AdapterState>, Constable

public enum AdapterState extends Enum<AdapterState>
The state of a Adapter.
  • Enum Constant Details

    • OPENED

      public static final AdapterState OPENED
      Opened state.
    • STARTED

      public static final AdapterState STARTED
      Started state.
    • PAUSED

      public static final AdapterState PAUSED
      Paused state.
    • DESTROYED

      public static final AdapterState DESTROYED
      Destroyed state.
  • Method Details

    • values

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