Package com.mongodb.client.model
Enum CollationAlternate
- java.lang.Object
-
- java.lang.Enum<CollationAlternate>
-
- com.mongodb.client.model.CollationAlternate
-
- All Implemented Interfaces:
Serializable
,Comparable<CollationAlternate>
public enum CollationAlternate extends Enum<CollationAlternate>
Collation support allows the specific configuration of whether or not spaces and punctuation are considered base characters.- Since:
- 3.4
- Since server release
- 3.4
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NON_IGNORABLE
Non-ignorableSHIFTED
Shifted
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CollationAlternate
fromString(String collationAlternate)
Returns the CollationAlternate from the string value.String
getValue()
static CollationAlternate
valueOf(String name)
Returns the enum constant of this type with the specified name.static CollationAlternate[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NON_IGNORABLE
public static final CollationAlternate NON_IGNORABLE
Non-ignorableSpaces and punctuation are considered base characters
-
SHIFTED
public static final CollationAlternate SHIFTED
ShiftedSpaces and punctuation are not considered base characters, and are only distinguished when the collation strength is > 3
- See Also:
CollationMaxVariable
-
-
Method Detail
-
values
public static CollationAlternate[] 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 (CollationAlternate c : CollationAlternate.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CollationAlternate 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
-
getValue
public String getValue()
- Returns:
- the String representation of the collation case first value
-
fromString
public static CollationAlternate fromString(String collationAlternate)
Returns the CollationAlternate from the string value.- Parameters:
collationAlternate
- the string value.- Returns:
- the read concern
-
-