public static enum JingleReason.Reason extends Enum<JingleReason.Reason>
Enum Constant and Description |
---|
alternative_session |
busy |
cancel |
connectivity_error |
decline |
expired |
failed_application |
failed_transport |
general_error |
gone |
incompatible_parameters |
media_error |
security_error |
success |
timeout |
unsupported_applications |
unsupported_transports |
Modifier and Type | Field and Description |
---|---|
protected String |
asString |
protected static Map<String,JingleReason.Reason> |
LUT |
Modifier and Type | Method and Description |
---|---|
static JingleReason.Reason |
fromString(String string) |
String |
toString() |
static JingleReason.Reason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JingleReason.Reason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JingleReason.Reason alternative_session
public static final JingleReason.Reason busy
public static final JingleReason.Reason cancel
public static final JingleReason.Reason connectivity_error
public static final JingleReason.Reason decline
public static final JingleReason.Reason expired
public static final JingleReason.Reason failed_application
public static final JingleReason.Reason failed_transport
public static final JingleReason.Reason general_error
public static final JingleReason.Reason gone
public static final JingleReason.Reason incompatible_parameters
public static final JingleReason.Reason media_error
public static final JingleReason.Reason security_error
public static final JingleReason.Reason success
public static final JingleReason.Reason timeout
public static final JingleReason.Reason unsupported_applications
public static final JingleReason.Reason unsupported_transports
protected static final Map<String,JingleReason.Reason> LUT
public static JingleReason.Reason[] values()
for (JingleReason.Reason c : JingleReason.Reason.values()) System.out.println(c);
public static JingleReason.Reason valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<JingleReason.Reason>
public static JingleReason.Reason fromString(String string)