public enum CharacterType extends Enum<CharacterType>
| Enum Constant and Description |
|---|
Blended
Both the separator and the valid character.
|
Letter
The valid character.
|
SeparateWord
The character that represents a whole word.
|
Separator
The separator character.
|
| Modifier and Type | Method and Description |
|---|---|
static CharacterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CharacterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CharacterType Blended
public static final CharacterType Letter
public static final CharacterType SeparateWord
public static final CharacterType Separator
public static CharacterType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static CharacterType[] values()
for (CharacterType c : CharacterType.values()) System.out.println(c);
Copyright © 2026. All rights reserved.