public enum LeafType extends Enum<LeafType>
| Enum Constant and Description |
|---|
BIG_DECIMAL
Represents DECIMAL64.
|
BIG_INTEGER
Represents UINT64.
|
BOOLEAN
Represents BOOLEAN, EMPTY.
|
BYTE
Represents INT8.
|
BYTE_ARRAY
Represents BASE64.
|
INT
Represents UINT16, INT32.
|
LONG
Represents UINT32, INT64.
|
SHORT
Represents INT16, UINT8.
|
STRING
Represents BITS, IDENTITYREF, ENUMERATION, STRING.
|
UNION
Represents union.
|
| Modifier and Type | Method and Description |
|---|---|
static LeafType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LeafType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LeafType BYTE
public static final LeafType SHORT
public static final LeafType INT
public static final LeafType LONG
public static final LeafType BOOLEAN
public static final LeafType STRING
public static final LeafType BIG_INTEGER
public static final LeafType BYTE_ARRAY
public static final LeafType BIG_DECIMAL
public static final LeafType UNION
public static LeafType[] values()
for (LeafType c : LeafType.values()) System.out.println(c);
public static LeafType 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 © 2017. All rights reserved.