public static enum Conference.State extends java.lang.Enum<Conference.State>
Enum Constant | Description |
---|---|
Created |
Conference was created on the server.
|
CreationFailed |
Conference creation failed.
|
CreationPending |
One creation request was sent to the server.
|
Deleted |
Conference was deleted on the server.
|
Instantiated |
Conference is now instantiated on local.
|
None |
Initial state.
|
Terminated |
Conference exists on server but not in local.
|
TerminationFailed |
Conference termination failed.
|
TerminationPending |
Wait for conference termination.
|
Modifier and Type | Field | Description |
---|---|---|
protected int |
mValue |
Modifier and Type | Method | Description |
---|---|---|
static Conference.State |
fromInt(int value) |
|
int |
toInt() |
|
static Conference.State |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Conference.State[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Conference.State None
public static final Conference.State Instantiated
public static final Conference.State CreationPending
public static final Conference.State Created
public static final Conference.State CreationFailed
public static final Conference.State TerminationPending
public static final Conference.State Terminated
public static final Conference.State TerminationFailed
public static final Conference.State Deleted
public static Conference.State[] values()
for (Conference.State c : Conference.State.values()) System.out.println(c);
public static Conference.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 Conference.State fromInt(int value) throws java.lang.RuntimeException
java.lang.RuntimeException
public int toInt()