public enum CallStatusType extends java.lang.Enum<CallStatusType>
| Enum Constant and Description |
|---|
CONNECT_CHANNEL |
CONNECT_FAIL |
CREATE_CHANNEL |
DISCONNECTED |
ICE |
INIT |
MEDIA |
ON_CONNECT |
RECONNECT |
SDP |
| Modifier and Type | Method and Description |
|---|---|
static CallStatusType |
fromString(java.lang.String text) |
java.lang.String |
getType() |
void |
setType(java.lang.String type) |
static CallStatusType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CallStatusType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallStatusType INIT
public static final CallStatusType MEDIA
public static final CallStatusType CREATE_CHANNEL
public static final CallStatusType CONNECT_CHANNEL
public static final CallStatusType RECONNECT
public static final CallStatusType SDP
public static final CallStatusType ICE
public static final CallStatusType ON_CONNECT
public static final CallStatusType CONNECT_FAIL
public static final CallStatusType DISCONNECTED
public static CallStatusType[] values()
for (CallStatusType c : CallStatusType.values()) System.out.println(c);
public static CallStatusType 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 nullpublic java.lang.String getType()
public void setType(java.lang.String type)
public static CallStatusType fromString(java.lang.String text)