public enum DliType extends Enum<DliType>
Enum Constant and Description |
---|
ARRAY |
BIGINT |
BOOLEAN |
CHAR |
DATE |
DECIMAL |
DOUBLE |
FLOAT |
INT |
LONG |
MAP |
NULL |
SHORT |
SMALLINT |
STRING |
STRUCT |
TIMESTAMP |
TINYINT |
VARCHAR |
Modifier and Type | Method and Description |
---|---|
static DliType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DliType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DliType BIGINT
public static final DliType DOUBLE
public static final DliType STRING
public static final DliType DECIMAL
public static final DliType SMALLINT
public static final DliType INT
public static final DliType CHAR
public static final DliType VARCHAR
public static final DliType DATE
public static final DliType TIMESTAMP
public static final DliType SHORT
public static final DliType LONG
public static final DliType BOOLEAN
public static final DliType FLOAT
public static final DliType TINYINT
public static final DliType ARRAY
public static final DliType STRUCT
public static final DliType MAP
public static final DliType NULL
public static DliType[] values()
for (DliType c : DliType.values()) System.out.println(c);
public static DliType 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.