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