public static enum Participant.State extends java.lang.Enum<Participant.State>
Enum Constant and Description |
---|
CONNECTED
The Participant has connected to signaling
|
CONNECTING
The Participant is connecting to signaling.
|
DISCONNECTED
The Participant has disconnected from signaling.
|
RECONNECTING
The Participant is attempting to reconnect to signaling
|
Modifier and Type | Method and Description |
---|---|
static Participant.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Participant.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Participant.State CONNECTING
public static final Participant.State CONNECTED
public static final Participant.State RECONNECTING
public static final Participant.State DISCONNECTED
public static Participant.State[] values()
for (Participant.State c : Participant.State.values()) System.out.println(c);
public static Participant.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 null6.0.0