public static enum Type.Kind extends Enum<Type.Kind>
| Enum Constant and Description |
|---|
DECIMAL |
DICT |
LIST |
OPTIONAL |
PRIMITIVE |
STRUCT |
TUPLE |
VARIANT |
VOID |
| Modifier and Type | Method and Description |
|---|---|
static Type.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Type.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type.Kind PRIMITIVE
public static final Type.Kind DECIMAL
public static final Type.Kind OPTIONAL
public static final Type.Kind LIST
public static final Type.Kind TUPLE
public static final Type.Kind STRUCT
public static final Type.Kind DICT
public static final Type.Kind VARIANT
public static final Type.Kind VOID
public static Type.Kind[] values()
for (Type.Kind c : Type.Kind.values()) System.out.println(c);
public static Type.Kind 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.