public enum ConferenceStatus extends java.lang.Enum<ConferenceStatus>
| Enum Constant and Description |
|---|
INITIALIZING |
JOINED |
JOINING |
LEAVING |
LEFT |
| Modifier and Type | Method and Description |
|---|---|
static ConferenceStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConferenceStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConferenceStatus INITIALIZING
public static final ConferenceStatus JOINING
public static final ConferenceStatus JOINED
public static final ConferenceStatus LEAVING
public static final ConferenceStatus LEFT
public static ConferenceStatus[] values()
for (ConferenceStatus c : ConferenceStatus.values()) System.out.println(c);
public static ConferenceStatus 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