public enum EightDotFallbackMethod extends Enum<EightDotFallbackMethod>
Enum Constant and Description |
---|
MASK
Mask the character.
|
REMOVE
Remove the character from output
|
REPLACE
Replace the character with a fixed replacement character
|
Modifier and Type | Method and Description |
---|---|
static EightDotFallbackMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EightDotFallbackMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EightDotFallbackMethod MASK
public static final EightDotFallbackMethod REPLACE
public static final EightDotFallbackMethod REMOVE
public static EightDotFallbackMethod[] values()
for (EightDotFallbackMethod c : EightDotFallbackMethod.values()) System.out.println(c);
public static EightDotFallbackMethod 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 null