public abstract class StandardSQLField extends Object implements Serializable
Modifier and Type | Class and Description |
---|---|
static class |
StandardSQLField.Builder |
Constructor and Description |
---|
StandardSQLField() |
Modifier and Type | Method and Description |
---|---|
abstract StandardSQLDataType |
getDataType()
Returns the field's data type.
|
abstract String |
getName()
Returns the field name.
|
static StandardSQLField.Builder |
newBuilder()
Returns a builder for a
StandardSQLField object. |
static StandardSQLField.Builder |
newBuilder(StandardSQLDataType dataType)
Returns a builder for a
StandardSQLField object with the specified data type. |
static StandardSQLField.Builder |
newBuilder(String name,
StandardSQLDataType dataType)
Returns a builder for a
StandardSQLField object with the specified field name and data
type. |
abstract StandardSQLField.Builder |
toBuilder()
Returns a builder pre-populated using the current values of this field.
|
public abstract StandardSQLDataType getDataType()
public abstract StandardSQLField.Builder toBuilder()
public static StandardSQLField.Builder newBuilder()
StandardSQLField
object.public static StandardSQLField.Builder newBuilder(StandardSQLDataType dataType)
StandardSQLField
object with the specified data type.public static StandardSQLField.Builder newBuilder(String name, StandardSQLDataType dataType)
StandardSQLField
object with the specified field name and data
type.Copyright © 2019 Google LLC. All rights reserved.