Uses of Class
com.google.cloud.bigquery.LegacySQLTypeName
-
Packages that use LegacySQLTypeName Package Description com.google.cloud.bigquery A client for BigQuery – A fully managed, petabyte scale, low cost enterprise data warehouse for analytics. -
-
Uses of LegacySQLTypeName in com.google.cloud.bigquery
Fields in com.google.cloud.bigquery declared as LegacySQLTypeName Modifier and Type Field Description static LegacySQLTypeName
LegacySQLTypeName. BIGNUMERIC
A decimal value with 76+ digits of precision (the 77th digit is partial) and 38 digits of scalestatic LegacySQLTypeName
LegacySQLTypeName. BOOLEAN
A Boolean value (true or false).static LegacySQLTypeName
LegacySQLTypeName. BYTES
Variable-length binary data.static LegacySQLTypeName
LegacySQLTypeName. DATE
Represents a logical calendar date.static LegacySQLTypeName
LegacySQLTypeName. DATETIME
Represents a year, month, day, hour, minute, second, and subsecond (microsecond precision).static LegacySQLTypeName
LegacySQLTypeName. FLOAT
A 64-bit IEEE binary floating-point value.static LegacySQLTypeName
LegacySQLTypeName. GEOGRAPHY
Represents a set of geographic points, represented as a Well Known Text (WKT) string.static LegacySQLTypeName
LegacySQLTypeName. INTEGER
A 64-bit signed integer value.static LegacySQLTypeName
LegacySQLTypeName. INTERVAL
Represents duration or amount of time.static LegacySQLTypeName
LegacySQLTypeName. JSON
Represents JSON datastatic LegacySQLTypeName
LegacySQLTypeName. NUMERIC
A decimal value with 38 digits of precision and 9 digits of scale.static LegacySQLTypeName
LegacySQLTypeName. RECORD
A record type with a nested schema.static LegacySQLTypeName
LegacySQLTypeName. STRING
Variable-length character (Unicode) data.static LegacySQLTypeName
LegacySQLTypeName. TIME
Represents a time, independent of a specific date, to microsecond precision.static LegacySQLTypeName
LegacySQLTypeName. TIMESTAMP
Represents an absolute point in time, with microsecond precision.Methods in com.google.cloud.bigquery that return LegacySQLTypeName Modifier and Type Method Description LegacySQLTypeName
Field. getType()
Returns the field type.static LegacySQLTypeName
LegacySQLTypeName. legacySQLTypeName(StandardSQLTypeName type)
Converts StandardSQLTypeName to LegacySQLTypeNamestatic LegacySQLTypeName
LegacySQLTypeName. valueOf(String constant)
Get the LegacySQLTypeName for the given String constant, and allow unrecognized values.static LegacySQLTypeName
LegacySQLTypeName. valueOfStrict(String constant)
Get the LegacySQLTypeName for the given String constant, and throw an exception if the constant is not recognized.static LegacySQLTypeName[]
LegacySQLTypeName. values()
Return the known values for LegacySQLTypeName.Methods in com.google.cloud.bigquery with parameters of type LegacySQLTypeName Modifier and Type Method Description static Field.Builder
Field. newBuilder(String name, LegacySQLTypeName type, Field... subFields)
Returns a builder for a Field object with given name and type.static Field.Builder
Field. newBuilder(String name, LegacySQLTypeName type, FieldList subFields)
Returns a builder for a Field object with given name and type.static Field
Field. of(String name, LegacySQLTypeName type, Field... subFields)
Returns a Field object with given name and type.static Field
Field. of(String name, LegacySQLTypeName type, FieldList subFields)
Returns a Field object with given name and type.Field.Builder
Field.Builder. setType(LegacySQLTypeName type, Field... subFields)
Sets the type of the field.Field.Builder
Field.Builder. setType(LegacySQLTypeName type, FieldList subFields)
Sets the type of the field.
-