public static enum Constants.CallTypes extends java.lang.Enum<Constants.CallTypes>
Enum Constant and Description |
---|
CALLTYPES_INCOMING
defining a call coming to the user
|
CALLTYPES_MISSED
defining calls that users do not make any operation (accept/reject/etc) related to it
|
CALLTYPES_OUTGOING
defining a call that is triggered by the user
|
Modifier and Type | Method and Description |
---|---|
static Constants.CallTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.CallTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.CallTypes CALLTYPES_INCOMING
public static final Constants.CallTypes CALLTYPES_MISSED
public static final Constants.CallTypes CALLTYPES_OUTGOING
public static Constants.CallTypes[] values()
for (Constants.CallTypes c : Constants.CallTypes.values()) System.out.println(c);
public static Constants.CallTypes valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null