Package tilda.generation.bigquery
Enum BigQueryType
- java.lang.Object
-
- java.lang.Enum<BigQueryType>
-
- tilda.generation.bigquery.BigQueryType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BigQueryType>
public enum BigQueryType extends java.lang.Enum<BigQueryType>
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
_SQLArrayType
java.lang.String
_SQLType
ColumnType
_T
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BigQueryType
get(ColumnType T)
static BigQueryType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BigQueryType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRING
public static final BigQueryType STRING
-
JSON
public static final BigQueryType JSON
-
VECTOR
public static final BigQueryType VECTOR
-
CHAR
public static final BigQueryType CHAR
-
SHORT
public static final BigQueryType SHORT
-
INTEGER
public static final BigQueryType INTEGER
-
LONG
public static final BigQueryType LONG
-
FLOAT
public static final BigQueryType FLOAT
-
DOUBLE
public static final BigQueryType DOUBLE
-
NUMERIC
public static final BigQueryType NUMERIC
-
BOOLEAN
public static final BigQueryType BOOLEAN
-
DATE
public static final BigQueryType DATE
-
DATETIME
public static final BigQueryType DATETIME
-
DATETIME_PLAIN
public static final BigQueryType DATETIME_PLAIN
-
BINARY
public static final BigQueryType BINARY
-
BITFIELD
public static final BigQueryType BITFIELD
-
UUID
public static final BigQueryType UUID
-
-
Field Detail
-
_SQLType
public java.lang.String _SQLType
-
_SQLArrayType
public java.lang.String _SQLArrayType
-
_T
public ColumnType _T
-
-
Method Detail
-
values
public static BigQueryType[] 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 (BigQueryType c : BigQueryType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BigQueryType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
get
public static BigQueryType get(ColumnType T)
-
-