Skip to main content

Enum Call.CallState

com.poly.polyos.call

Enum Call.CallState

  • java.lang.Object

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable\<Call.CallState>

Enclosing class:
Call


public static enum Call.CallState
extends java.lang.Enum<Call.CallState>

The state of a call

Enum Constant Summary

Enum Constant and Description

ACTIVE
Active call state

ENDED
Call has ended.

HOLD
Call is on hold.

REQUEST
Waiting for request from PolyOS

Modifier and TypeMethod and Description
static Call.CallStatevalueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
static Call.CallState[]values()
Returns an array containing the onstants of this enum type, in the order they are declared.

Methods inherited from class java.lang.Enum

clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

Methods inherited from class java.lang.Object

getClass, notify, notifyAll, wait, wait, wait

Enum Constant Detail

REQUEST

public static final Call.CallState REQUEST
Waiting for request from PolyOS

ACTIVE

public static final Call.CallState ACTIVE
Active call state

HOLD

public static final Call.CallState HOLD
Call is on hold.

ENDED

public static final Call.CallState ENDED
Call has ended.

Method Detail

values

public static Call.CallState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:

for (Call.CallState c : Call.CallState.values())
System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Call.CallState valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null