Package com.mongodb.client.model
Enum Class CollationAlternate
- All Implemented Interfaces:
Serializable
,Comparable<CollationAlternate>
,java.lang.constant.Constable
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
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic CollationAlternate
fromString
(String collationAlternate) Returns the CollationAlternate from the string value.getValue()
static CollationAlternate
Returns the enum constant of this class with the specified name.static CollationAlternate[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NON_IGNORABLE
Non-ignorableSpaces and punctuation are considered base characters
-
SHIFTED
ShiftedSpaces and punctuation are not considered base characters, and are only distinguished when the collation strength is > 3
- See Also:
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
- Returns:
- the String representation of the collation case first value
-
fromString
Returns the CollationAlternate from the string value.- Parameters:
collationAlternate
- the string value.- Returns:
- the read concern
-