Enum CollationAlternate

    • Enum Constant Detail

      • NON_IGNORABLE

        public static final CollationAlternate NON_IGNORABLE
        Non-ignorable

        Spaces and punctuation are considered base characters

      • SHIFTED

        public static final CollationAlternate SHIFTED
        Shifted

        Spaces 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 name
        NullPointerException - 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