Enum Failure.CompressFailureError
- java.lang.Object
-
- java.lang.Enum<Failure.CompressFailureError>
-
- org.jivesoftware.smack.compress.packet.Failure.CompressFailureError
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Failure.CompressFailureError>
- Enclosing class:
- Failure
public static enum Failure.CompressFailureError extends java.lang.Enum<Failure.CompressFailureError>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description processing_failed
setup_failed
unsupported_method
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static Failure.CompressFailureError
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Failure.CompressFailureError[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
setup_failed
public static final Failure.CompressFailureError setup_failed
-
processing_failed
public static final Failure.CompressFailureError processing_failed
-
unsupported_method
public static final Failure.CompressFailureError unsupported_method
-
-
Method Detail
-
values
public static Failure.CompressFailureError[] 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 (Failure.CompressFailureError c : Failure.CompressFailureError.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Failure.CompressFailureError 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 namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<Failure.CompressFailureError>
-
-