public static enum Rule.Normalization extends java.lang.Enum<Rule.Normalization>
| Modifier and Type | Method and Description |
|---|---|
static Rule.Normalization |
fromString(java.lang.String name) |
java.lang.String |
toString() |
static Rule.Normalization |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Rule.Normalization[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Rule.Normalization NONE
public static final Rule.Normalization NFC
public static final Rule.Normalization NFD
public static Rule.Normalization[] values()
for (Rule.Normalization c : Rule.Normalization.values()) System.out.println(c);
public static Rule.Normalization 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 java.lang.String toString()
toString in class java.lang.Enum<Rule.Normalization>public static Rule.Normalization fromString(java.lang.String name)