public enum LiveStatus extends java.lang.Enum<LiveStatus>
| Enum Constant and Description |
|---|
CONNECTED
The session is connected.
|
NOT_CONNECTED
The user has not consented to the application.
|
UNKNOWN
The status is not known.
|
| Modifier and Type | Method and Description |
|---|---|
static LiveStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LiveStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LiveStatus UNKNOWN
public static final LiveStatus CONNECTED
public static final LiveStatus NOT_CONNECTED
public static LiveStatus[] values()
for (LiveStatus c : LiveStatus.values()) System.out.println(c);
public static LiveStatus 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