public enum CstaCallLogRecordType extends java.lang.Enum<CstaCallLogRecordType>
Enum Constant and Description |
---|
incoming |
INCOMING |
joined |
JOINED |
outgoing |
OUTGOING |
Modifier and Type | Method and Description |
---|---|
static CstaCallLogRecordType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CstaCallLogRecordType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CstaCallLogRecordType INCOMING
public static final CstaCallLogRecordType OUTGOING
public static final CstaCallLogRecordType JOINED
public static final CstaCallLogRecordType incoming
public static final CstaCallLogRecordType outgoing
public static final CstaCallLogRecordType joined
public static CstaCallLogRecordType[] values()
for (CstaCallLogRecordType c : CstaCallLogRecordType.values()) System.out.println(c);
public static CstaCallLogRecordType 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