Enum PrepareString.NormStateEnum
- java.lang.Object
-
- java.lang.Enum<PrepareString.NormStateEnum>
-
- org.apache.directory.api.ldap.model.schema.PrepareString.NormStateEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PrepareString.NormStateEnum>
- Enclosing class:
- PrepareString
private static enum PrepareString.NormStateEnum extends Enum<PrepareString.NormStateEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHARSENDINITIAL_CHARINITIAL_SPACESSPACE_CHARSPACESSTART
-
Constructor Summary
Constructors Modifier Constructor Description privateNormStateEnum()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PrepareString.NormStateEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PrepareString.NormStateEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
START
public static final PrepareString.NormStateEnum START
-
INITIAL_CHAR
public static final PrepareString.NormStateEnum INITIAL_CHAR
-
INITIAL_SPACES
public static final PrepareString.NormStateEnum INITIAL_SPACES
-
SPACES
public static final PrepareString.NormStateEnum SPACES
-
CHARS
public static final PrepareString.NormStateEnum CHARS
-
SPACE_CHAR
public static final PrepareString.NormStateEnum SPACE_CHAR
-
END
public static final PrepareString.NormStateEnum END
-
-
Method Detail
-
values
public static PrepareString.NormStateEnum[] 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 (PrepareString.NormStateEnum c : PrepareString.NormStateEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PrepareString.NormStateEnum 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
-
-