public static enum Normalizer2.Mode extends java.lang.Enum<Normalizer2.Mode>
Enum Constant and Description |
---|
COMPOSE
Decomposition followed by composition.
|
COMPOSE_CONTIGUOUS
Compose only contiguously.
|
DECOMPOSE
Map, and reorder canonically.
|
FCD
"Fast C or D" form.
|
Modifier and Type | Method and Description |
---|---|
static Normalizer2.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Normalizer2.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Normalizer2.Mode COMPOSE
public static final Normalizer2.Mode DECOMPOSE
public static final Normalizer2.Mode FCD
public static final Normalizer2.Mode COMPOSE_CONTIGUOUS
public static Normalizer2.Mode[] values()
for (Normalizer2.Mode c : Normalizer2.Mode.values()) System.out.println(c);
public static Normalizer2.Mode 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 nullCopyright (c) 2012 IBM Corporation and others.