CharacterType
Contents
[
Hide
]
Inheritance: java.lang.Object, java.lang.Enum
public enum CharacterType extends Enum<CharacterType>
Represents a type of a character, depending on how it should be indexed.
Fields
Field | Description |
---|---|
Separator | The separator character. |
Letter | The valid character. |
Blended | Both the separator and the valid character. |
SeparateWord | The character that represents a whole word. |
Methods
Method | Description |
---|---|
values() | |
valueOf(String name) |
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.
values()
public static CharacterType[] values()
Returns: com.groupdocs.search.dictionaries.CharacterType[]
valueOf(String name)
public static CharacterType valueOf(String name)
Parameters:
Parameter | Type | Description |
---|---|---|
name | java.lang.String |
Returns: CharacterType