Package org.xnio.sasl
Enum SaslQop
- All Implemented Interfaces:
Serializable
,Comparable<SaslQop>
,java.lang.constant.Constable
The SASL quality-of-protection value.
- See Also:
-
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 TypeMethodDescriptionstatic SaslQop
fromString
(String name) Get the SASL QOP level for the given string.Get the string representation of this SASL QOP value.toString()
Get the human-readable string representation of this SASL QOP value.static SaslQop
Returns the enum constant of this type with the specified name.static SaslQop[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
AUTH
A QOP value specifying authentication only. -
AUTH_INT
A QOP value specifying authentication plus integrity protection. -
AUTH_CONF
A QOP value specifying authentication plus integrity and confidentiality protection.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
fromString
Get the SASL QOP level for the given string.- Parameters:
name
- the QOP level- Returns:
- the QOP value
-
getString
Get the string representation of this SASL QOP value.- Returns:
- the string representation
-
toString
Get the human-readable string representation of this SASL QOP value.
-