public enum CharTransformation extends java.lang.Enum<CharTransformation> implements EnumConverter<CharTransformation>
Modifier and Type | Method and Description |
---|---|
static CharTransformation |
from(java.lang.String value) |
java.lang.String |
to(CharTransformation v) |
static CharTransformation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CharTransformation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CharTransformation ASIAN
public static final CharTransformation CYRILLIC
public static final CharTransformation EUROPEAN
public static final CharTransformation ARABIC
public static CharTransformation[] values()
for (CharTransformation c : CharTransformation.values()) System.out.println(c);
public static CharTransformation valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static CharTransformation from(java.lang.String value)
public java.lang.String to(CharTransformation v)
to
in interface EnumConverter<CharTransformation>