Package | Description |
---|---|
com.google.cloud.bigquery |
A client for BigQuery – A fully managed, petabyte scale, low cost enterprise data warehouse for
analytics.
|
Modifier and Type | Method and Description |
---|---|
abstract StandardSQLTypeName |
QueryParameterValue.getArrayType()
Returns the data type of the array elements.
|
StandardSQLTypeName |
LegacySQLTypeName.getStandardType()
Provides the standard SQL type name equivalent to this type name.
|
abstract StandardSQLTypeName |
QueryParameterValue.getType()
Returns the data type of this parameter.
|
static StandardSQLTypeName |
StandardSQLTypeName.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StandardSQLTypeName[] |
StandardSQLTypeName.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static <T> QueryParameterValue |
QueryParameterValue.array(T[] array,
StandardSQLTypeName type)
Creates a
QueryParameterValue object with a type of ARRAY the given array element type. |
static LegacySQLTypeName |
LegacySQLTypeName.legacySQLTypeName(StandardSQLTypeName type)
Converts StandardSQLTypeName to LegacySQLTypeName
|
static StandardSQLDataType.Builder |
StandardSQLDataType.newBuilder(StandardSQLTypeName typeName)
Returns a new builder initialized with a StandardSQLTypeName as the type kind.
|
static Field.Builder |
Field.newBuilder(String name,
StandardSQLTypeName type,
Field... subFields)
Returns a builder for a Field object with given name and type.
|
static Field.Builder |
Field.newBuilder(String name,
StandardSQLTypeName type,
FieldList subFields)
Returns a builder for a Field object with given name and type.
|
static <T> QueryParameterValue |
QueryParameterValue.of(T value,
StandardSQLTypeName type)
Creates a
QueryParameterValue object with the given value and type. |
abstract QueryParameterValue.Builder |
QueryParameterValue.Builder.setArrayType(StandardSQLTypeName arrayType)
Sets the data type of the array elements.
|
abstract QueryParameterValue.Builder |
QueryParameterValue.Builder.setType(StandardSQLTypeName type)
Sets the parameter data type.
|
Field.Builder |
Field.Builder.setType(StandardSQLTypeName type,
Field... subFields)
Sets the type of the field.
|
Field.Builder |
Field.Builder.setType(StandardSQLTypeName type,
FieldList subFields)
Sets the type of the field.
|
Copyright © 2019 Google LLC. All rights reserved.