public static enum SaslPrep.StringType extends Enum<SaslPrep.StringType>
| Enum Constant | Description |
|---|---|
QUERY |
Queries for matching strings MAY contain unassigned code points.
|
STORED |
Stored strings using the profile MUST NOT contain any unassigned code points.
|
| Modifier and Type | Method | Description |
|---|---|---|
static SaslPrep.StringType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static SaslPrep.StringType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SaslPrep.StringType STORED
public static final SaslPrep.StringType QUERY
public static SaslPrep.StringType[] values()
for (SaslPrep.StringType c : SaslPrep.StringType.values()) System.out.println(c);
public static SaslPrep.StringType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null