com.groupdocs.search.dictionaries

Enum CharacterType

    • Enum Constant Detail

      • Separator

        public static final CharacterType Separator

        The separator character.

      • Letter

        public static final CharacterType Letter

        The valid character.

      • Blended

        public static final CharacterType Blended

        Both the separator and the valid character.

      • SeparateWord

        public static final CharacterType SeparateWord

        The character that represents a whole word.

    • Method Detail

      • values

        public static CharacterType[] 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 (CharacterType c : CharacterType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CharacterType 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