Package com.databricks.jdbc.model.core
Enum ColumnInfoTypeName
- java.lang.Object
-
- java.lang.Enum<ColumnInfoTypeName>
-
- com.databricks.jdbc.model.core.ColumnInfoTypeName
-
- All Implemented Interfaces:
Serializable,Comparable<ColumnInfoTypeName>
public enum ColumnInfoTypeName extends Enum<ColumnInfoTypeName>
Column info type name POJOTODO: Replace this class with the corresponding SDK implementation once it becomes available
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ColumnInfoTypeNamevalueOf(String name)Returns the enum constant of this type with the specified name.static ColumnInfoTypeName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARRAY
public static final ColumnInfoTypeName ARRAY
-
BINARY
public static final ColumnInfoTypeName BINARY
-
BOOLEAN
public static final ColumnInfoTypeName BOOLEAN
-
BYTE
public static final ColumnInfoTypeName BYTE
-
CHAR
public static final ColumnInfoTypeName CHAR
-
DATE
public static final ColumnInfoTypeName DATE
-
DECIMAL
public static final ColumnInfoTypeName DECIMAL
-
DOUBLE
public static final ColumnInfoTypeName DOUBLE
-
FLOAT
public static final ColumnInfoTypeName FLOAT
-
GEOGRAPHY
public static final ColumnInfoTypeName GEOGRAPHY
-
GEOMETRY
public static final ColumnInfoTypeName GEOMETRY
-
INT
public static final ColumnInfoTypeName INT
-
INTERVAL
public static final ColumnInfoTypeName INTERVAL
-
LONG
public static final ColumnInfoTypeName LONG
-
MAP
public static final ColumnInfoTypeName MAP
-
NULL
public static final ColumnInfoTypeName NULL
-
SHORT
public static final ColumnInfoTypeName SHORT
-
STRING
public static final ColumnInfoTypeName STRING
-
STRUCT
public static final ColumnInfoTypeName STRUCT
-
TIMESTAMP
public static final ColumnInfoTypeName TIMESTAMP
-
USER_DEFINED_TYPE
public static final ColumnInfoTypeName USER_DEFINED_TYPE
-
-
Method Detail
-
values
public static ColumnInfoTypeName[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ColumnInfoTypeName c : ColumnInfoTypeName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ColumnInfoTypeName valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-