public enum ResultColumnType extends Enum<ResultColumnType> implements Serializable
Enum Constant and Description |
---|
ARRAY
The array.
|
BIGINT
The bigint.
|
BINARY
The binary.
|
BOOLEAN
The boolean.
|
CHAR
The char.
|
DATE
The date.
|
DECIMAL
The decimal.
|
DOUBLE
The double.
|
FLOAT
The float.
|
INT
The int.
|
MAP
The map.
|
NULL
The null.
|
SMALLINT
The smallint.
|
STRING
The string.
|
STRUCT
The struct.
|
TIMESTAMP
The timestamp.
|
TINYINT
The tinyint.
|
UNIONTYPE
The uniontype.
|
USER_DEFINED
The user defined.
|
VARCHAR
The varchar.
|
Modifier and Type | Method and Description |
---|---|
static ResultColumnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResultColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResultColumnType BOOLEAN
public static final ResultColumnType TINYINT
public static final ResultColumnType SMALLINT
public static final ResultColumnType INT
public static final ResultColumnType BIGINT
public static final ResultColumnType FLOAT
public static final ResultColumnType DOUBLE
public static final ResultColumnType STRING
public static final ResultColumnType TIMESTAMP
public static final ResultColumnType BINARY
public static final ResultColumnType ARRAY
public static final ResultColumnType MAP
public static final ResultColumnType STRUCT
public static final ResultColumnType UNIONTYPE
public static final ResultColumnType USER_DEFINED
public static final ResultColumnType DECIMAL
public static final ResultColumnType NULL
public static final ResultColumnType DATE
public static final ResultColumnType VARCHAR
public static final ResultColumnType CHAR
public static ResultColumnType[] values()
for (ResultColumnType c : ResultColumnType.values()) System.out.println(c);
public static ResultColumnType 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 © 2014–2018 Apache Software Foundation. All rights reserved.