public static enum Call.Type extends Enum<Call.Type>
| Enum Constant and Description |
|---|
INCOMING_P2P |
INCOMING_PSTN
INCOMING_PSTN - incoming call from PSTN.
|
OUTGOING_P2P |
OUTGOING_PSTN |
| Modifier and Type | Method and Description |
|---|---|
static Call.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Call.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Call.Type INCOMING_PSTN
public static final Call.Type OUTGOING_PSTN
public static final Call.Type INCOMING_P2P
public static final Call.Type OUTGOING_P2P
public static Call.Type[] values()
for (Call.Type c : Call.Type.values()) System.out.println(c);
public static Call.Type 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 © 2013. All Rights Reserved.