public static enum DecimalFormatProperties.ParseMode extends Enum<DecimalFormatProperties.ParseMode>
Enum.EnumDesc<E extends Enum<E>>| Enum Constant and Description |
|---|
JAVA_COMPATIBILITY
Internal parse mode for increased compatibility with java.text.DecimalFormat.
|
LENIENT
Lenient mode should be used if you want to accept malformed user input.
|
STRICT
Strict mode should be used if you want to require that the input is well-formed.
|
| Modifier and Type | Method and Description |
|---|---|
static DecimalFormatProperties.ParseMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DecimalFormatProperties.ParseMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecimalFormatProperties.ParseMode LENIENT
public static final DecimalFormatProperties.ParseMode STRICT
public static final DecimalFormatProperties.ParseMode JAVA_COMPATIBILITY
public static DecimalFormatProperties.ParseMode[] values()
public static DecimalFormatProperties.ParseMode 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 null