Package com.gpudb
Enum Type.Column.ColumnType
- java.lang.Object
-
- java.lang.Enum<Type.Column.ColumnType>
-
- com.gpudb.Type.Column.ColumnType
-
- All Implemented Interfaces:
Serializable,Comparable<Type.Column.ColumnType>
- Enclosing class:
- Type.Column
public static enum Type.Column.ColumnType extends Enum<Type.Column.ColumnType>
An enumeration of all the Kinetica column types (including sub-types that are determined by the properties used). Note that multiple column types will map to a single base type (Type.Column.ColumnBaseType).
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Type.Column.ColumnTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Type.Column.ColumnType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INTEGER
public static final Type.Column.ColumnType INTEGER
-
LONG
public static final Type.Column.ColumnType LONG
-
FLOAT
public static final Type.Column.ColumnType FLOAT
-
DOUBLE
public static final Type.Column.ColumnType DOUBLE
-
STRING
public static final Type.Column.ColumnType STRING
-
BYTES
public static final Type.Column.ColumnType BYTES
-
BOOLEAN
public static final Type.Column.ColumnType BOOLEAN
-
INT8
public static final Type.Column.ColumnType INT8
-
INT16
public static final Type.Column.ColumnType INT16
-
TIMESTAMP
public static final Type.Column.ColumnType TIMESTAMP
-
ARRAY
public static final Type.Column.ColumnType ARRAY
-
DATE
public static final Type.Column.ColumnType DATE
-
DATETIME
public static final Type.Column.ColumnType DATETIME
-
TIME
public static final Type.Column.ColumnType TIME
-
DECIMAL
public static final Type.Column.ColumnType DECIMAL
-
CHAR1
public static final Type.Column.ColumnType CHAR1
-
CHAR2
public static final Type.Column.ColumnType CHAR2
-
CHAR4
public static final Type.Column.ColumnType CHAR4
-
CHAR8
public static final Type.Column.ColumnType CHAR8
-
CHAR16
public static final Type.Column.ColumnType CHAR16
-
CHAR32
public static final Type.Column.ColumnType CHAR32
-
CHAR64
public static final Type.Column.ColumnType CHAR64
-
CHAR128
public static final Type.Column.ColumnType CHAR128
-
CHAR256
public static final Type.Column.ColumnType CHAR256
-
IPV4
public static final Type.Column.ColumnType IPV4
-
JSON
public static final Type.Column.ColumnType JSON
-
ULONG
public static final Type.Column.ColumnType ULONG
-
UUID
public static final Type.Column.ColumnType UUID
-
WKT
public static final Type.Column.ColumnType WKT
-
VECTOR
public static final Type.Column.ColumnType VECTOR
-
WKB
public static final Type.Column.ColumnType WKB
-
-
Method Detail
-
values
public static Type.Column.ColumnType[] 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 (Type.Column.ColumnType c : Type.Column.ColumnType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Type.Column.ColumnType 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
-
-