Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public Builder setName(String name) {
* @throws IllegalArgumentException if {@code type == LegacySQLTypeName.RECORD &&
* subFields.length == 0} or if {@code type != LegacySQLTypeName.RECORD && subFields.length
* != 0}
* @see <a href="https://cloud.google.com/bigquery/preparing-data-for-bigquery#datatypes">Data
* @see <a href="https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types">Data
* Types</a>
*/
public Builder setType(LegacySQLTypeName type, Field... subFields) {
Expand All @@ -121,7 +121,7 @@ public Builder setType(LegacySQLTypeName type, Field... subFields) {
* @throws IllegalArgumentException if {@code type == LegacySQLTypeName.RECORD && (subFields ==
* null || subFields.isEmpty())} or if {@code type != LegacySQLTypeName.RECORD && subFields
* != null}
* @see <a href="https://cloud.google.com/bigquery/preparing-data-for-bigquery#datatypes">Data
* @see <a href="https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types">Data
* Types</a>
*/
public Builder setType(LegacySQLTypeName type, FieldList subFields) {
Expand Down Expand Up @@ -175,7 +175,7 @@ public String getName() {
/**
* Returns the field type.
*
* @see <a href="https://cloud.google.com/bigquery/preparing-data-for-bigquery#datatypes">Data
* @see <a href="https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types">Data
* Types</a>
*/
public LegacySQLTypeName getType() {
Expand Down