Package org.jivesoftware.openfire.net
Enum Class SASLAuthentication.ElementType
java.lang.Object
java.lang.Enum<SASLAuthentication.ElementType>
org.jivesoftware.openfire.net.SASLAuthentication.ElementType
- All Implemented Interfaces:
Serializable,Comparable<SASLAuthentication.ElementType>,Constable
- Enclosing class:
- SASLAuthentication
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.valueOfCaseInsensitive(String name) Returns the ElementType corresponding to the given name, performing a case-insensitive lookup.static SASLAuthentication.ElementType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ABORT
-
AUTH
-
AUTHENTICATE
-
RESPONSE
-
CHALLENGE
-
FAILURE
-
UNDEF
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
valueOfCaseInsensitive
Returns the ElementType corresponding to the given name, performing a case-insensitive lookup. ReturnsUNDEFif the name is null, empty, or does not match any known element type.- Parameters:
name- the element name to look up (may be null or empty)- Returns:
- the matching ElementType, or
UNDEFif no match is found
-