com.caucho.bam
Enum BamError.ErrorGroup
java.lang.Object
java.lang.Enum<BamError.ErrorGroup>
com.caucho.bam.BamError.ErrorGroup
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<BamError.ErrorGroup>
- Enclosing class:
- BamError
public static enum BamError.ErrorGroup
- extends java.lang.Enum<BamError.ErrorGroup>
Method Summary |
static BamError.ErrorGroup |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static BamError.ErrorGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
BAD_FORMAT
public static final BamError.ErrorGroup BAD_FORMAT
BAD_NAMESPACE_PREFIX
public static final BamError.ErrorGroup BAD_NAMESPACE_PREFIX
CONFLICT
public static final BamError.ErrorGroup CONFLICT
CONNECTION_TIMEOUT
public static final BamError.ErrorGroup CONNECTION_TIMEOUT
FORBIDDEN
public static final BamError.ErrorGroup FORBIDDEN
HOST_GONE
public static final BamError.ErrorGroup HOST_GONE
HOST_UNKNOWN
public static final BamError.ErrorGroup HOST_UNKNOWN
IMPROPER_ADDRESSING
public static final BamError.ErrorGroup IMPROPER_ADDRESSING
INTERNAL_SERVER_ERROR
public static final BamError.ErrorGroup INTERNAL_SERVER_ERROR
INVALID_FROM
public static final BamError.ErrorGroup INVALID_FROM
INVALID_ID
public static final BamError.ErrorGroup INVALID_ID
INVALID_NAMESPACE
public static final BamError.ErrorGroup INVALID_NAMESPACE
INVALID_XML
public static final BamError.ErrorGroup INVALID_XML
NOT_AUTHORIZED
public static final BamError.ErrorGroup NOT_AUTHORIZED
POLICY_VIOLATION
public static final BamError.ErrorGroup POLICY_VIOLATION
REMOTE_CONNECTION_FAILED
public static final BamError.ErrorGroup REMOTE_CONNECTION_FAILED
REMOTE_LISTENER_UNAVAILABLE
public static final BamError.ErrorGroup REMOTE_LISTENER_UNAVAILABLE
RESOURCE_CONSTRAINT
public static final BamError.ErrorGroup RESOURCE_CONSTRAINT
RESTRICTED_XML
public static final BamError.ErrorGroup RESTRICTED_XML
SEE_OTHER_HOST
public static final BamError.ErrorGroup SEE_OTHER_HOST
SYSTEM_SHUTDOWN
public static final BamError.ErrorGroup SYSTEM_SHUTDOWN
UNDEFINED_CONDITION
public static final BamError.ErrorGroup UNDEFINED_CONDITION
UNSUPPORTED_ENCODING
public static final BamError.ErrorGroup UNSUPPORTED_ENCODING
UNSUPPORTED_STANZA_TYPE
public static final BamError.ErrorGroup UNSUPPORTED_STANZA_TYPE
UNSUPPORTED_VERSION
public static final BamError.ErrorGroup UNSUPPORTED_VERSION
XML_NOT_WELL_FORMED
public static final BamError.ErrorGroup XML_NOT_WELL_FORMED
FEATURE_NOT_IMPLEMENTED
public static final BamError.ErrorGroup FEATURE_NOT_IMPLEMENTED
SERVICE_UNAVAILABLE
public static final BamError.ErrorGroup SERVICE_UNAVAILABLE
values
public static BamError.ErrorGroup[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (BamError.ErrorGroup c : BamError.ErrorGroup.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static BamError.ErrorGroup valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null