Enum ColumnTypeName
- java.lang.Object
-
- java.lang.Enum<ColumnTypeName>
-
- com.databricks.sdk.service.catalog.ColumnTypeName
-
- All Implemented Interfaces:
Serializable,Comparable<ColumnTypeName>
@Generated public enum ColumnTypeName extends Enum<ColumnTypeName>
Name of type (INT, STRUCT, MAP, etc.).
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ColumnTypeNamevalueOf(String name)Returns the enum constant of this type with the specified name.static ColumnTypeName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARRAY
public static final ColumnTypeName ARRAY
-
BINARY
public static final ColumnTypeName BINARY
-
BOOLEAN
public static final ColumnTypeName BOOLEAN
-
BYTE
public static final ColumnTypeName BYTE
-
CHAR
public static final ColumnTypeName CHAR
-
DATE
public static final ColumnTypeName DATE
-
DECIMAL
public static final ColumnTypeName DECIMAL
-
DOUBLE
public static final ColumnTypeName DOUBLE
-
FLOAT
public static final ColumnTypeName FLOAT
-
INT
public static final ColumnTypeName INT
-
INTERVAL
public static final ColumnTypeName INTERVAL
-
LONG
public static final ColumnTypeName LONG
-
MAP
public static final ColumnTypeName MAP
-
NULL
public static final ColumnTypeName NULL
-
SHORT
public static final ColumnTypeName SHORT
-
STRING
public static final ColumnTypeName STRING
-
STRUCT
public static final ColumnTypeName STRUCT
-
TABLE_TYPE
public static final ColumnTypeName TABLE_TYPE
-
TIMESTAMP
public static final ColumnTypeName TIMESTAMP
-
TIMESTAMP_NTZ
public static final ColumnTypeName TIMESTAMP_NTZ
-
USER_DEFINED_TYPE
public static final ColumnTypeName USER_DEFINED_TYPE
-
-
Method Detail
-
values
public static ColumnTypeName[] 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 (ColumnTypeName c : ColumnTypeName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ColumnTypeName 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
-
-