public enum CallUpdateEvent extends Enum<CallUpdateEvent>
Enum Constant and Description |
---|
ACCEPTED
The call update was accepted.
|
RECEIVED
Call update received from remote peer.
|
REJECTED
The call update was rejected.
|
SENT
Call update sent to remote peer.
|
Modifier and Type | Method and Description |
---|---|
static CallUpdateEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CallUpdateEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallUpdateEvent RECEIVED
public static final CallUpdateEvent SENT
public static final CallUpdateEvent ACCEPTED
public static final CallUpdateEvent REJECTED
public static CallUpdateEvent[] values()
for (CallUpdateEvent c : CallUpdateEvent.values()) System.out.println(c);
public static CallUpdateEvent valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null