2727import java .util .Objects ;
2828
2929/**
30- * Google BigQuery view table type. BigQuery's views are logical views, not materialized views,
31- * which means that the query that defines the view is re-executed every time the view is queried.
30+ * Google BigQuery view table definition. BigQuery's views are logical views, not materialized
31+ * views, which means that the query that defines the view is re-executed every time the view is
32+ * queried.
3233 *
3334 * @see <a href="https://cloud.google.com/bigquery/querying-data#views">Views</a>
3435 */
@@ -168,7 +169,7 @@ Table toPb() {
168169 }
169170
170171 /**
171- * Returns a builder for a BigQuery view type .
172+ * Returns a builder for a BigQuery view definition .
172173 *
173174 * @param query the query used to generate the view
174175 */
@@ -177,7 +178,7 @@ public static Builder builder(String query) {
177178 }
178179
179180 /**
180- * Returns a builder for a BigQuery view type .
181+ * Returns a builder for a BigQuery view definition .
181182 *
182183 * @param query the query used to generate the table
183184 * @param functions user-defined functions that can be used by the query
@@ -187,7 +188,7 @@ public static Builder builder(String query, List<UserDefinedFunction> functions)
187188 }
188189
189190 /**
190- * Returns a builder for a BigQuery view type .
191+ * Returns a builder for a BigQuery view definition .
191192 *
192193 * @param query the query used to generate the table
193194 * @param functions user-defined functions that can be used by the query
@@ -197,7 +198,7 @@ public static Builder builder(String query, UserDefinedFunction... functions) {
197198 }
198199
199200 /**
200- * Creates a BigQuery view type given the query used to generate the table.
201+ * Creates a BigQuery view definition given the query used to generate the table.
201202 *
202203 * @param query the query used to generate the table
203204 */
@@ -206,7 +207,7 @@ public static ViewDefinition of(String query) {
206207 }
207208
208209 /**
209- * Creates a BigQuery view type given a query and some user-defined functions.
210+ * Creates a BigQuery view definition given a query and some user-defined functions.
210211 *
211212 * @param query the query used to generate the table
212213 * @param functions user-defined functions that can be used by the query
@@ -216,7 +217,7 @@ public static ViewDefinition of(String query, List<UserDefinedFunction> function
216217 }
217218
218219 /**
219- * Creates a BigQuery view type given a query and some user-defined functions.
220+ * Creates a BigQuery view definition given a query and some user-defined functions.
220221 *
221222 * @param query the query used to generate the table
222223 * @param functions user-defined functions that can be used by the query
0 commit comments