Enum SaslContext.Role
- java.lang.Object
-
- java.lang.Enum<SaslContext.Role>
-
- org.apache.qpid.protonj2.engine.sasl.SaslContext.Role
-
- All Implemented Interfaces:
Serializable
,Comparable<SaslContext.Role>
- Enclosing interface:
- SaslContext
public static enum SaslContext.Role extends Enum<SaslContext.Role>
Indicates the role that this SASL context plays either server or client.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SaslContext.Role
valueOf(String name)
Returns the enum constant of this type with the specified name.static SaslContext.Role[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLIENT
public static final SaslContext.Role CLIENT
-
SERVER
public static final SaslContext.Role SERVER
-
-
Method Detail
-
values
public static SaslContext.Role[] 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 (SaslContext.Role c : SaslContext.Role.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SaslContext.Role valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-