public static enum EventPost.EventType extends Enum<EventPost.EventType>
| Enum Constant and Description |
|---|
answered |
cancelled |
delivered |
exception |
hangup |
preconnect |
read |
timeout |
| Modifier and Type | Method and Description |
|---|---|
static EventPost.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventPost.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventPost.EventType delivered
public static final EventPost.EventType read
public static final EventPost.EventType answered
public static final EventPost.EventType timeout
public static final EventPost.EventType hangup
public static final EventPost.EventType cancelled
public static final EventPost.EventType exception
public static final EventPost.EventType preconnect
public static EventPost.EventType[] values()
for (EventPost.EventType c : EventPost.EventType.values()) System.out.println(c);
public static EventPost.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 © 2015 AskFast BV. All rights reserved.