public static enum ConferenceScheduler.State extends java.lang.Enum<ConferenceScheduler.State>
Enum Constant | Description |
---|---|
AllocationPending |
Conference creation is in progress.
|
Error |
An error has happened during conference creation.
|
Idle |
Default state of a freshly created
ConferenceScheduler . |
Ready |
Confererence has been created.
|
Updating |
Conference has been updated.
|
Modifier and Type | Field | Description |
---|---|---|
protected int |
mValue |
Modifier and Type | Method | Description |
---|---|---|
static ConferenceScheduler.State |
fromInt(int value) |
|
int |
toInt() |
|
static ConferenceScheduler.State |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ConferenceScheduler.State[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConferenceScheduler.State Idle
public static final ConferenceScheduler.State Error
public static final ConferenceScheduler.State AllocationPending
public static final ConferenceScheduler.State Ready
public static final ConferenceScheduler.State Updating
public static ConferenceScheduler.State[] values()
for (ConferenceScheduler.State c : ConferenceScheduler.State.values()) System.out.println(c);
public static ConferenceScheduler.State 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 nullpublic static ConferenceScheduler.State fromInt(int value) throws java.lang.RuntimeException
java.lang.RuntimeException
public int toInt()