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