Uses of Class
com.google.cloud.bigquery.StandardSQLDataType
-
Packages that use StandardSQLDataType Package Description com.google.cloud.bigquery A client for BigQuery – A fully managed, petabyte scale, low cost enterprise data warehouse for analytics. -
-
Uses of StandardSQLDataType in com.google.cloud.bigquery
Methods in com.google.cloud.bigquery that return StandardSQLDataType Modifier and Type Method Description abstract StandardSQLDataType
StandardSQLDataType.Builder. build()
Creates aStandardSQLDataType
object.abstract StandardSQLDataType
StandardSQLDataType. getArrayElementType()
Returns the type of an ARRAY's elements.abstract StandardSQLDataType
RoutineArgument. getDataType()
abstract StandardSQLDataType
StandardSQLField. getDataType()
Returns the field's data type.StandardSQLDataType
RoutineInfo. getReturnType()
If specified, returns the data type returned from the routine.Methods in com.google.cloud.bigquery with parameters of type StandardSQLDataType Modifier and Type Method Description static StandardSQLField.Builder
StandardSQLField. newBuilder(StandardSQLDataType dataType)
Returns a builder for aStandardSQLField
object with the specified data type.static StandardSQLField.Builder
StandardSQLField. newBuilder(String name, StandardSQLDataType dataType)
Returns a builder for aStandardSQLField
object with the specified field name and data type.abstract StandardSQLDataType.Builder
StandardSQLDataType.Builder. setArrayElementType(StandardSQLDataType arrayElementType)
Sets the type of an array's elements, when the TypeKind is ARRAY.abstract RoutineArgument.Builder
RoutineArgument.Builder. setDataType(StandardSQLDataType dataType)
Sets the data type specification for the argument.abstract StandardSQLField.Builder
StandardSQLField.Builder. setDataType(StandardSQLDataType dataType)
Sets the data type of the field.Routine.Builder
Routine.Builder. setReturnType(StandardSQLDataType returnType)
abstract RoutineInfo.Builder
RoutineInfo.Builder. setReturnType(StandardSQLDataType returnType)
Sets the return type of the routine.
-