Package com.google.cloud.bigquery
Class BigQuery.DatasetListOption
- java.lang.Object
-
- com.google.cloud.bigquery.BigQuery.DatasetListOption
-
- All Implemented Interfaces:
Serializable
- Enclosing interface:
- BigQuery
public static class BigQuery.DatasetListOption extends Object
Class for specifying dataset list options.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BigQuery.DatasetListOptionall()Returns an options to list all datasets, even hidden ones.booleanequals(Object obj)inthashCode()static BigQuery.DatasetListOptionlabelFilter(String labelFilter)Returns an option to specify a label filter.static BigQuery.DatasetListOptionpageSize(long pageSize)Returns an option to specify the maximum number of datasets returned per page.static BigQuery.DatasetListOptionpageToken(String pageToken)Returns an option to specify the page token from which to start listing datasets.StringtoString()
-
-
-
Method Detail
-
labelFilter
public static BigQuery.DatasetListOption labelFilter(String labelFilter)
Returns an option to specify a label filter. See https://cloud.google.com/bigquery/docs/adding-using-labels#filtering_datasets_using_labels- Parameters:
labelFilter- In the form "labels.key:value"
-
pageSize
public static BigQuery.DatasetListOption pageSize(long pageSize)
Returns an option to specify the maximum number of datasets returned per page.
-
pageToken
public static BigQuery.DatasetListOption pageToken(String pageToken)
Returns an option to specify the page token from which to start listing datasets.
-
all
public static BigQuery.DatasetListOption all()
Returns an options to list all datasets, even hidden ones.
-
-