Package com.google.cloud.bigquery
Class Field.Builder
- java.lang.Object
-
- com.google.cloud.bigquery.Field.Builder
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Fieldbuild()Creates aFieldobject.Field.BuildersetCollation(String collation)Optional.Field.BuildersetDefaultValueExpression(String defaultValueExpression)DefaultValueExpression is used to specify the default value of a field using a SQL expression.Field.BuildersetDescription(String description)Sets the field description.Field.BuildersetMaxLength(Long maxLength)Sets the maximum length of the field for STRING or BYTES type.Field.BuildersetMode(Field.Mode mode)Sets the mode of the field.Field.BuildersetName(String name)Sets the field name.Field.BuildersetPolicyTags(PolicyTags policyTags)Sets the policy tags for the field.Field.BuildersetPrecision(Long precision)Precision can be used to constrain the maximum number of total digits allowed for NUMERIC or BIGNUMERIC types.Field.BuildersetScale(Long scale)Scale can be used to constrain the maximum number of digits in the fractional part of a NUMERIC or BIGNUMERIC type.Field.BuildersetType(LegacySQLTypeName type, Field... subFields)Sets the type of the field.Field.BuildersetType(LegacySQLTypeName type, FieldList subFields)Sets the type of the field.Field.BuildersetType(StandardSQLTypeName type, Field... subFields)Sets the type of the field.Field.BuildersetType(StandardSQLTypeName type, FieldList subFields)Sets the type of the field.
-
-
-
Method Detail
-
setName
public Field.Builder setName(String name)
Sets the field name. The name must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_), and must start with a letter or underscore. The maximum length is 128 characters.
-
setType
public Field.Builder setType(LegacySQLTypeName type, Field... subFields)
Sets the type of the field.- Parameters:
type- BigQuery data typesubFields- nested schema fields in case iftypeisLegacySQLTypeName.RECORD, empty otherwise- Throws:
IllegalArgumentException- iftype == LegacySQLTypeName.RECORD && subFields.length == 0or iftype != LegacySQLTypeName.RECORD && subFields.length != 0- See Also:
- Data Types
-
setType
public Field.Builder setType(StandardSQLTypeName type, Field... subFields)
Sets the type of the field.- Parameters:
type- BigQuery data typesubFields- nested schema fields in case iftypeisStandardSQLTypeName.STRUCT, empty otherwise- Throws:
IllegalArgumentException- iftype == StandardSQLTypeName.STRUCT && subFields.length == 0or iftype != StandardSQLTypeName.STRUCT && subFields.length != 0- See Also:
- Data Types
-
setType
public Field.Builder setType(LegacySQLTypeName type, FieldList subFields)
Sets the type of the field.- Parameters:
type- BigQuery data typesubFields- nested schema fields, in case iftypeisLegacySQLTypeName.RECORD,nullotherwise.- Throws:
IllegalArgumentException- iftype == LegacySQLTypeName.RECORD && (subFields == null || subFields.isEmpty())or iftype != LegacySQLTypeName.RECORD && subFields != null- See Also:
- Data Types
-
setType
public Field.Builder setType(StandardSQLTypeName type, FieldList subFields)
Sets the type of the field.- Parameters:
type- BigQuery data typesubFields- nested schema fields in case iftypeisStandardSQLTypeName.STRUCT, empty otherwise- Throws:
IllegalArgumentException- iftype == StandardSQLTypeName.STRUCT && subFields.length == 0or iftype != StandardSQLTypeName.STRUCT && subFields.length != 0- See Also:
- Data Types
-
setMode
public Field.Builder setMode(Field.Mode mode)
Sets the mode of the field. When not specifiedField.Mode.NULLABLEis used.
-
setDescription
public Field.Builder setDescription(String description)
Sets the field description. The maximum length is 16K characters.
-
setPolicyTags
public Field.Builder setPolicyTags(PolicyTags policyTags)
Sets the policy tags for the field.
-
setMaxLength
public Field.Builder setMaxLength(Long maxLength)
Sets the maximum length of the field for STRING or BYTES type.It is invalid to set value for types other than STRING or BYTES.
For STRING type, this represents the maximum UTF-8 length of strings allowed in the field. For BYTES type, this represents the maximum number of bytes in the field.
-
setScale
public Field.Builder setScale(Long scale)
Scale can be used to constrain the maximum number of digits in the fractional part of a NUMERIC or BIGNUMERIC type. If the Scale value is set, the Precision value must be set as well. It is invalid to set values for Scale for types other than NUMERIC or BIGNUMERIC. See the Precision field for additional guidance about valid values.
-
setPrecision
public Field.Builder setPrecision(Long precision)
Precision can be used to constrain the maximum number of total digits allowed for NUMERIC or BIGNUMERIC types. It is invalid to set values for Precision for types other than // NUMERIC or BIGNUMERIC. For NUMERIC type, acceptable values for Precision must be: 1 ≤ (Precision - Scale) ≤ 29. Values for Scale must be: 0 ≤ Scale ≤ 9. For BIGNUMERIC type, acceptable values for Precision must be: 1 ≤ (Precision - Scale) ≤ 38. Values for Scale must be: 0 ≤ Scale ≤ 38.
-
setDefaultValueExpression
public Field.Builder setDefaultValueExpression(String defaultValueExpression)
DefaultValueExpression is used to specify the default value of a field using a SQL expression. It can only be set for top level fields (columns).You can use struct or array expression to specify default value for the entire struct or array. The valid SQL expressions are:
Literals for all data types, including STRUCT and ARRAY. The following functions: - CURRENT_TIMESTAMP - CURRENT_TIME - CURRENT_DATE - CURRENT_DATETIME - GENERATE_UUID - RAND - SESSION_USER - ST_GEOGPOINT Struct or array composed with the above allowed functions, for example: "[CURRENT_DATE(), DATE '2020-01-01']"
-
setCollation
public Field.Builder setCollation(String collation)
Optional. Field collation can be set only when the type of field is STRING. The following values are supported:* 'und:ci': undetermined locale, case insensitive. * '': empty string. Default to case-sensitive behavior. (-- A wrapper is used here because it is possible to set the value to the empty string. --)
-
build
public Field build()
Creates aFieldobject.
-
-