public static enum XMPPError.StreamError extends Enum<XMPPError.StreamError>
| Enum Constant and Description |
|---|
SASL_FAILED |
STREAM_CLOSED |
STREAM_ERROR |
STREAM_NEGOTIATION_FAILED |
TLS_FAILED |
UNEXPECTED_DATA |
XMPP_PROTOCOL_VOILATION |
| Modifier and Type | Method and Description |
|---|---|
static XMPPError.StreamError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XMPPError.StreamError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XMPPError.StreamError STREAM_CLOSED
public static final XMPPError.StreamError STREAM_ERROR
public static final XMPPError.StreamError STREAM_NEGOTIATION_FAILED
public static final XMPPError.StreamError TLS_FAILED
public static final XMPPError.StreamError SASL_FAILED
public static final XMPPError.StreamError UNEXPECTED_DATA
public static final XMPPError.StreamError XMPP_PROTOCOL_VOILATION
public static XMPPError.StreamError[] values()
for (XMPPError.StreamError c : XMPPError.StreamError.values()) System.out.println(c);
public static XMPPError.StreamError 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 nullCopyright © 2019. All rights reserved.