public static enum Value.Type extends Enum<Value.Type>
| Enum Constant and Description |
|---|
ARRAY |
BIG_INTEGER |
BINARY |
BOOLEAN |
DECIMAL |
DOCUMENT |
DOUBLE |
FLOAT |
INTEGER |
LONG |
NULL |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static Value.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Value.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Value.Type NULL
public static final Value.Type STRING
public static final Value.Type BOOLEAN
public static final Value.Type BINARY
public static final Value.Type INTEGER
public static final Value.Type LONG
public static final Value.Type FLOAT
public static final Value.Type DOUBLE
public static final Value.Type BIG_INTEGER
public static final Value.Type DECIMAL
public static final Value.Type DOCUMENT
public static final Value.Type ARRAY
public static Value.Type[] values()
for (Value.Type c : Value.Type.values()) System.out.println(c);
public static Value.Type 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 © 2021 JBoss by Red Hat. All rights reserved.