public static enum DataNode.TypeId extends Enum<DataNode.TypeId>
| Enum Constant and Description |
|---|
ANY |
ARRAY |
BIGINT |
BOOL |
DOUBLE |
INT64 |
NULL |
OBJECT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static DataNode.TypeId |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataNode.TypeId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataNode.TypeId INT64
public static final DataNode.TypeId BIGINT
public static final DataNode.TypeId DOUBLE
public static final DataNode.TypeId BOOL
public static final DataNode.TypeId STRING
public static final DataNode.TypeId NULL
public static final DataNode.TypeId OBJECT
public static final DataNode.TypeId ARRAY
public static final DataNode.TypeId ANY
public static DataNode.TypeId[] values()
for (DataNode.TypeId c : DataNode.TypeId.values()) System.out.println(c);
public static DataNode.TypeId 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 © 2015–2023 The Struqt Project. All rights reserved.