|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Normalizer2.Mode>
com.ibm.icu.text.Normalizer2.Mode
public static enum Normalizer2.Mode
Constants for normalization modes. For details about standard Unicode normalization forms and about the algorithms which are also used with custom mapping tables see http://www.unicode.org/unicode/reports/tr15/
| Enum Constant Summary | |
|---|---|
COMPOSE
Decomposition followed by composition. |
|
COMPOSE_CONTIGUOUS
Compose only contiguously. |
|
DECOMPOSE
Map, and reorder canonically. |
|
FCD
"Fast C or D" form. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
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
| Method Detail |
|---|
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 name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||