Enum Class PhoneDeviceState

java.lang.Object
java.lang.Enum<PhoneDeviceState>
com.novomind.ecom.api.iagent.state.PhoneDeviceState
All Implemented Interfaces:
Serializable, Comparable<PhoneDeviceState>, Constable

public enum PhoneDeviceState extends Enum<PhoneDeviceState>
Represents the types of phone device states
Since:
11.27
  • Enum Constant Details

    • CLEAR

      public static final PhoneDeviceState CLEAR
      The phone device is connected and not busy and ready to receive calls.
      Since:
      11.27
    • BUSY

      public static final PhoneDeviceState BUSY
      The phone device is connected and busy. The busy state also includes a ringing device due to an incoming call.
      Since:
      11.27
    • DISCONNECTED

      public static final PhoneDeviceState DISCONNECTED
      The phone device is disconnected. This is the initial state for a phone device.
      Since:
      12.1
  • Method Details

    • values

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