public static enum NumberHelper.ParseMode extends Enum<NumberHelper.ParseMode>
| Enum Constant and Description |
|---|
STRICT
Propagates
NumberFormatException that may be thrown during operation |
SUPPRESS_EXCEPTION
Suppresses
NumberFormatException that may be thrown during operation |
| Modifier and Type | Method and Description |
|---|---|
static NumberHelper.ParseMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumberHelper.ParseMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumberHelper.ParseMode SUPPRESS_EXCEPTION
NumberFormatException that may be thrown during operationpublic static final NumberHelper.ParseMode STRICT
NumberFormatException that may be thrown during operationpublic static NumberHelper.ParseMode[] values()
for (NumberHelper.ParseMode c : NumberHelper.ParseMode.values()) System.out.println(c);
public static NumberHelper.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 nullCopyright © 2018. All rights reserved.