| Package | Description |
|---|---|
| com.google.cloud.bigquery |
A client to Google Cloud BigQuery.
|
| Modifier and Type | Method and Description |
|---|---|
static Field.Type |
Field.Type.bool()
Returns a
Field.Type.Value.BOOLEAN field value. |
static Field.Type |
Field.Type.floatingPoint()
Returns a
Field.Type.Value.FLOAT field value. |
static Field.Type |
Field.Type.integer()
Returns an
Field.Type.Value.INTEGER field value. |
static Field.Type |
Field.Type.record(Field... fields)
Returns a
Field.Type.Value.RECORD field value with associated list of sub-fields. |
static Field.Type |
Field.Type.record(List<Field> fields)
Returns a
Field.Type.Value.RECORD field value with associated list of sub-fields. |
static Field.Type |
Field.Type.string()
Returns a
Field.Type.Value.STRING field value. |
static Field.Type |
Field.Type.timestamp()
Returns a
Field.Type.Value.TIMESTAMP field value. |
Field.Type |
Field.type()
Returns the field value.
|
| Modifier and Type | Method and Description |
|---|---|
static Field.Builder |
Field.builder(String name,
Field.Type type)
Returns a builder for a Field object with given name and value.
|
static Field |
Field.of(String name,
Field.Type type)
Returns a Field object with given name and value.
|
Field.Builder |
Field.Builder.type(Field.Type type)
Sets the value of the field.
|
Copyright © 2016 Google. All rights reserved.