public static enum Call.WaitReason extends java.lang.Enum<Call.WaitReason>
| Enum Constant and Description |
|---|
MEETING_NOT_START
Waiting in the lobby for the meeting to start.
|
WAITING_FOR_ADMITTING
Waiting in the lobby for admiting by hosts
|
| Modifier and Type | Method and Description |
|---|---|
static Call.WaitReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Call.WaitReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Call.WaitReason MEETING_NOT_START
public static final Call.WaitReason WAITING_FOR_ADMITTING
public static Call.WaitReason[] values()
for (Call.WaitReason c : Call.WaitReason.values()) System.out.println(c);
public static Call.WaitReason 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