public static enum Rule.Normalization extends Enum<Rule.Normalization>
| Modifier and Type | Method and Description |
|---|---|
static Rule.Normalization |
fromString(String name) |
String |
toString() |
static Rule.Normalization |
valueOf(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(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 nullpublic String toString()
toString in class Enum<Rule.Normalization>public static Rule.Normalization fromString(String name)
Copyright © 2020. All rights reserved.