public static enum CallMembership.State extends java.lang.Enum<CallMembership.State>
Enum Constant and Description |
---|
DECLINED
The person has declined the call.
|
IDLE
The person is idle w/o any call.
|
JOINED
The person has joined the call.
|
LEFT
The person has left the call.
|
NOTIFIED
The person has been notified about the call.
|
UNKNOWN
The person status is unknown.
|
Modifier and Type | Method and Description |
---|---|
static CallMembership.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CallMembership.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallMembership.State UNKNOWN
public static final CallMembership.State IDLE
public static final CallMembership.State NOTIFIED
public static final CallMembership.State JOINED
public static final CallMembership.State LEFT
public static final CallMembership.State DECLINED
public static CallMembership.State[] values()
for (CallMembership.State c : CallMembership.State.values()) System.out.println(c);
public static CallMembership.State valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null