public static enum Conference.Status extends Enum<Conference.Status>
| Enum Constant and Description |
|---|
CONNECTED
Connected
|
CONNECTING
Connecting
|
CONNECTING_SENDREQUEST
Connecting, send authentication request
|
DISCONNECTED
Disconnected
|
| Modifier and Type | Method and Description |
|---|---|
static Conference.Status |
fromInteger(int i)
Initialize from integer
|
static Conference.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Conference.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Conference.Status DISCONNECTED
public static final Conference.Status CONNECTING
public static final Conference.Status CONNECTING_SENDREQUEST
public static final Conference.Status CONNECTED
public static Conference.Status[] values()
for (Conference.Status c : Conference.Status.values()) System.out.println(c);
public static Conference.Status 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 nullpublic static Conference.Status fromInteger(int i)
i - status idCopyright © 2017. All rights reserved.