public enum MgcpTransactionState extends Enum<MgcpTransactionState>
| Enum Constant and Description |
|---|
COMPLETED |
EXECUTING_REQUEST |
IDLE |
WAITING_RESPONSE |
| Modifier and Type | Method and Description |
|---|---|
static MgcpTransactionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MgcpTransactionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MgcpTransactionState IDLE
public static final MgcpTransactionState EXECUTING_REQUEST
public static final MgcpTransactionState WAITING_RESPONSE
public static final MgcpTransactionState COMPLETED
public static MgcpTransactionState[] values()
for (MgcpTransactionState c : MgcpTransactionState.values()) System.out.println(c);
public static MgcpTransactionState 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 © 2017 TeleStax, Inc.. All Rights Reserved.