public static enum Normalizer2.Mode extends 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(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(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 nullCopyright © 2016 Unicode, Inc. and others.