Package de.caluga.morphium
Enum Collation.Alternate
- java.lang.Object
-
- java.lang.Enum<Collation.Alternate>
-
- de.caluga.morphium.Collation.Alternate
-
- All Implemented Interfaces:
Serializable,Comparable<Collation.Alternate>
- Enclosing class:
- Collation
public static enum Collation.Alternate extends Enum<Collation.Alternate>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NON_IGNORABLESHIFTED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetMongoText()static Collation.AlternatevalueOf(String name)Returns the enum constant of this type with the specified name.static Collation.Alternate[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SHIFTED
public static final Collation.Alternate SHIFTED
-
NON_IGNORABLE
public static final Collation.Alternate NON_IGNORABLE
-
-
Method Detail
-
values
public static Collation.Alternate[] 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 (Collation.Alternate c : Collation.Alternate.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Collation.Alternate 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
-
getMongoText
public String getMongoText()
-
-