public static enum Datum.Kind extends Enum<Datum.Kind>
| Enum Constant and Description |
|---|
ARRAY |
CHUNKED_ARRAY |
COLLECTION |
NONE |
RECORD_BATCH |
SCALAR |
TABLE |
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
Datum.Kind |
intern() |
String |
toString() |
static Datum.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Datum.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Datum.Kind NONE
public static final Datum.Kind SCALAR
public static final Datum.Kind ARRAY
public static final Datum.Kind CHUNKED_ARRAY
public static final Datum.Kind RECORD_BATCH
public static final Datum.Kind TABLE
public static final Datum.Kind COLLECTION
public static Datum.Kind[] values()
for (Datum.Kind c : Datum.Kind.values()) System.out.println(c);
public static Datum.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 nullpublic Datum.Kind intern()
public String toString()
toString in class Enum<Datum.Kind>Copyright © 2021. All rights reserved.