Serializable, Comparable<SipEvent.EventType>public static enum SipEvent.EventType extends Enum<SipEvent.EventType>
| Enum Constant | Description |
|---|---|
CALLEE_PICKUP |
|
ERROR |
|
INCOMING_CALL |
|
RINGING |
| Modifier and Type | Method | Description |
|---|---|---|
static SipEvent.EventType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static SipEvent.EventType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SipEvent.EventType ERROR
public static final SipEvent.EventType RINGING
public static final SipEvent.EventType INCOMING_CALL
public static final SipEvent.EventType CALLEE_PICKUP
public static SipEvent.EventType[] values()
for (SipEvent.EventType c : SipEvent.EventType.values()) System.out.println(c);
public static SipEvent.EventType 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 nullCopyright © 2018. All rights reserved.