public enum CallStatus extends Enum<CallStatus>
| Enum Constant and Description |
|---|
BUSY |
CANCELED |
COMPLETED |
FAILED |
INPROGRESS |
NOANSWER |
QUEUED |
RINGING |
| Modifier and Type | Method and Description |
|---|---|
static CallStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CallStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallStatus QUEUED
public static final CallStatus RINGING
public static final CallStatus INPROGRESS
public static final CallStatus CANCELED
public static final CallStatus COMPLETED
public static final CallStatus FAILED
public static final CallStatus BUSY
public static final CallStatus NOANSWER
public static CallStatus[] values()
for (CallStatus c : CallStatus.values()) System.out.println(c);
public static CallStatus 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. All Rights Reserved.