public static enum Variant.Type extends Enum<Variant.Type>
| Enum Constant and Description |
|---|
ARRAY |
BINARY |
BOOLEAN |
BYTE |
DATE |
DECIMAL16 |
DECIMAL4 |
DECIMAL8 |
DOUBLE |
FLOAT |
INT |
LONG |
NULL |
OBJECT |
SHORT |
STRING |
TIME |
TIMESTAMP_NANOS_NTZ |
TIMESTAMP_NANOS_TZ |
TIMESTAMP_NTZ |
TIMESTAMP_TZ |
UUID |
| Modifier and Type | Method and Description |
|---|---|
static Variant.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Variant.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Variant.Type OBJECT
public static final Variant.Type ARRAY
public static final Variant.Type NULL
public static final Variant.Type BOOLEAN
public static final Variant.Type BYTE
public static final Variant.Type SHORT
public static final Variant.Type INT
public static final Variant.Type LONG
public static final Variant.Type STRING
public static final Variant.Type DOUBLE
public static final Variant.Type DECIMAL4
public static final Variant.Type DECIMAL8
public static final Variant.Type DECIMAL16
public static final Variant.Type DATE
public static final Variant.Type TIMESTAMP_TZ
public static final Variant.Type TIMESTAMP_NTZ
public static final Variant.Type FLOAT
public static final Variant.Type BINARY
public static final Variant.Type TIME
public static final Variant.Type TIMESTAMP_NANOS_TZ
public static final Variant.Type TIMESTAMP_NANOS_NTZ
public static final Variant.Type UUID
public static Variant.Type[] values()
for (Variant.Type c : Variant.Type.values()) System.out.println(c);
public static Variant.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 © 2024 The Apache Software Foundation. All rights reserved.