Class TableInfo.Builder (2.39.1)

public abstract static class TableInfo.Builder

A builder for TableInfo objects.

Inheritance

java.lang.Object > TableInfo.Builder

Constructors

Builder()

public Builder()

Methods

build()

public abstract TableInfo build()

Creates a TableInfo object.

Returns
Type Description
TableInfo

setCloneDefinition(CloneDefinition cloneDefinition)

public abstract TableInfo.Builder setCloneDefinition(CloneDefinition cloneDefinition)
Parameter
Name Description
cloneDefinition CloneDefinition
Returns
Type Description
TableInfo.Builder

setDefaultCollation(String defaultCollation)

public abstract TableInfo.Builder setDefaultCollation(String defaultCollation)
Parameter
Name Description
defaultCollation String
Returns
Type Description
TableInfo.Builder

setDefinition(TableDefinition definition)

public abstract TableInfo.Builder setDefinition(TableDefinition definition)

Sets the table definition. Use StandardTableDefinition to create simple BigQuery table. Use ViewDefinition to create a BigQuery view. Use ExternalTableDefinition to create a BigQuery a table backed by external data.

Parameter
Name Description
definition TableDefinition
Returns
Type Description
TableInfo.Builder

setDescription(String description)

public abstract TableInfo.Builder setDescription(String description)

Sets a user-friendly description for the table.

Parameter
Name Description
description String
Returns
Type Description
TableInfo.Builder

setEncryptionConfiguration(EncryptionConfiguration configuration)

public abstract TableInfo.Builder setEncryptionConfiguration(EncryptionConfiguration configuration)
Parameter
Name Description
configuration EncryptionConfiguration
Returns
Type Description
TableInfo.Builder

setExpirationTime(Long expirationTime)

public abstract TableInfo.Builder setExpirationTime(Long expirationTime)

Sets the time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed.

Parameter
Name Description
expirationTime Long
Returns
Type Description
TableInfo.Builder

setFriendlyName(String friendlyName)

public abstract TableInfo.Builder setFriendlyName(String friendlyName)

Sets a user-friendly name for the table.

Parameter
Name Description
friendlyName String
Returns
Type Description
TableInfo.Builder

setLabels(Map<String,String> labels)

public abstract TableInfo.Builder setLabels(Map<String,String> labels)

Sets the labels applied to this table.

Unstable, because labels are experimental.

When used with BigQuery#update(TableInfo, TableOption...), setting labels to null removes all labels; otherwise all keys that are mapped to null values are removed and other keys are updated to their respective values.

Parameter
Name Description
labels Map<String,String>
Returns
Type Description
TableInfo.Builder

setRequirePartitionFilter(Boolean requirePartitionFilter)

public TableInfo.Builder setRequirePartitionFilter(Boolean requirePartitionFilter)
Parameter
Name Description
requirePartitionFilter Boolean
Returns
Type Description
TableInfo.Builder

setResourceTags(Map<String,String> resourceTags)

public abstract TableInfo.Builder setResourceTags(Map<String,String> resourceTags)

Sets the resource tags applied to this table.

Parameter
Name Description
resourceTags Map<String,String>
Returns
Type Description
TableInfo.Builder

setTableConstraints(TableConstraints tableConstraints)

public abstract TableInfo.Builder setTableConstraints(TableConstraints tableConstraints)
Parameter
Name Description
tableConstraints TableConstraints
Returns
Type Description
TableInfo.Builder

setTableId(TableId tableId)

public abstract TableInfo.Builder setTableId(TableId tableId)

Sets the table identity.

Parameter
Name Description
tableId TableId
Returns
Type Description
TableInfo.Builder