Enum Constant and Description |
---|
BINARY
The binary type with variable length.
|
BOOLEAN
The boolean type.
|
BYTE
The byte type.
|
DATE
The date type.
|
DECIMAL
The decimal type.
|
DOUBLE
The double type.
|
FIXED
The binary type with fixed length
|
FIXEDCHAR
The char type with fixed length
|
FLOAT
The float type.
|
INTEGER
The integer type.
|
INTERVAL_DAY
The interval month type.
|
INTERVAL_YEAR
The interval year type.
|
LIST
The list type.
|
LONG
The long type.
|
MAP
The map type.
|
NULL
The null type.
|
SHORT
The short type.
|
STRING
The interval day type.
|
STRUCT
The struct type.
|
TIME
The time type.
|
TIMESTAMP
The timestamp type.
|
UNION
The union type.
|
UNPARSED
The unparsed type.
|
UUID
The UUID type.
|
VARCHAR
The varchar type.
|
Modifier and Type | Method and Description |
---|---|
static Type.Name |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Type.Name[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type.Name BOOLEAN
public static final Type.Name BYTE
public static final Type.Name SHORT
public static final Type.Name INTEGER
public static final Type.Name LONG
public static final Type.Name FLOAT
public static final Type.Name DOUBLE
public static final Type.Name DECIMAL
public static final Type.Name DATE
public static final Type.Name TIME
public static final Type.Name TIMESTAMP
public static final Type.Name INTERVAL_YEAR
public static final Type.Name INTERVAL_DAY
public static final Type.Name STRING
public static final Type.Name VARCHAR
public static final Type.Name FIXEDCHAR
public static final Type.Name UUID
public static final Type.Name FIXED
public static final Type.Name BINARY
public static final Type.Name STRUCT
public static final Type.Name LIST
public static final Type.Name MAP
public static final Type.Name UNION
public static final Type.Name NULL
public static final Type.Name UNPARSED
public static Type.Name[] values()
for (Type.Name c : Type.Name.values()) System.out.println(c);
public static Type.Name valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null