public static enum NumericUnescaper.OPTION extends Enum<NumericUnescaper.OPTION>
| Enum Constant and Description |
|---|
errorIfNoSemiColon |
semiColonOptional |
semiColonRequired |
| Modifier and Type | Method and Description |
|---|---|
static NumericUnescaper.OPTION |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumericUnescaper.OPTION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumericUnescaper.OPTION semiColonRequired
public static final NumericUnescaper.OPTION semiColonOptional
public static final NumericUnescaper.OPTION errorIfNoSemiColon
public static NumericUnescaper.OPTION[] values()
for (NumericUnescaper.OPTION c : NumericUnescaper.OPTION.values()) System.out.println(c);
public static NumericUnescaper.OPTION 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 © 2020. All rights reserved.