-
- All Implemented Interfaces:
-
java.io.Serializable
,java.lang.Comparable
public enum CheckListState
Everty CheckList is associated with a state, which captures the state of ICE checks for that media stream. There are three states: Running: In this state, ICE checks are still in progress for this media stream. Completed: In this state, ICE checks have produced nominated pairs for each component of the media stream. Consequently, ICE has succeeded and media can be sent. Failed: In this state, the ICE checks have not completed successfully for this media stream. When a check list is first constructed as the consequence of an offer/answer exchange, it is placed in the Running state.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FAILED
In this state, the ICE checks have not completed successfully for this media stream.
COMPLETED
In this state, ICE checks have produced nominated pairs for each component of the media stream. Consequently, ICE has succeeded and media can be sent.
RUNNING
In this state, ICE checks are still in progress for this media stream.
-
Method Summary
Modifier and Type Method Description String
toString()
Returns the name of this CheckListStae (i.e.. static Array<CheckListState>
values()
static CheckListState
valueOf(String name)
-
-
Method Detail
-
toString
String toString()
Returns the name of this CheckListStae (i.e.. "Running", "Completed", or "Failed").
-
values
static Array<CheckListState> values()
-
valueOf
static CheckListState valueOf(String name)
-
-
-
-