public enum RemoteParticipantState extends java.lang.Enum<RemoteParticipantState>
Enum Constant and Description |
---|
Alerting
Indicates that an interaction is alerting at the identified
RemoteParticipantI |
Established
Indicates that an interaction is established at the identified
RemoteParticipantI |
Failed
Indicates that an interaction failed to reach the identified
RemoteParticipantI |
Offered
Indicates that an interaction is offered at the identified
RemoteParticipantI |
Unknown |
Modifier and Type | Method and Description |
---|---|
static RemoteParticipantState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RemoteParticipantState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoteParticipantState Alerting
RemoteParticipantI
public static final RemoteParticipantState Established
RemoteParticipantI
public static final RemoteParticipantState Failed
RemoteParticipantI
public static final RemoteParticipantState Offered
RemoteParticipantI
public static final RemoteParticipantState Unknown
public static RemoteParticipantState[] values()
for (RemoteParticipantState c : RemoteParticipantState.values()) System.out.println(c);
public static RemoteParticipantState 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