Package com.google.cloud.bigquery
Class StandardSQLField.Builder
- java.lang.Object
-
- com.google.cloud.bigquery.StandardSQLField.Builder
-
- Enclosing class:
- StandardSQLField
public abstract static class StandardSQLField.Builder extends Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract StandardSQLFieldbuild()Creates aStandardSQLFieldobject.abstract StandardSQLField.BuildersetDataType(StandardSQLDataType dataType)Sets the data type of the field.abstract StandardSQLField.BuildersetName(String name)Sets the name of the field.
-
-
-
Method Detail
-
setName
public abstract StandardSQLField.Builder setName(String name)
Sets the name of the field.
-
setDataType
public abstract StandardSQLField.Builder setDataType(StandardSQLDataType dataType)
Sets the data type of the field.
-
build
public abstract StandardSQLField build()
Creates aStandardSQLFieldobject.
-
-