-
- All Implemented Interfaces:
-
java.io.Serializable,java.lang.Comparable
public enum CheckListStateEverty 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 FAILEDIn this state, the ICE checks have not completed successfully for this media stream.
COMPLETEDIn this state, ICE checks have produced nominated pairs for each component of the media stream. Consequently, ICE has succeeded and media can be sent.
RUNNINGIn this state, ICE checks are still in progress for this media stream.
-
Method Summary
Modifier and Type Method Description StringtoString()Returns the name of this CheckListStae (i.e.. static Array<CheckListState>values()static CheckListStatevalueOf(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)
-
-
-
-