Package com.google.cloud.bigquery
Class BigQuery.TableDataListOption
- java.lang.Object
-
- com.google.cloud.bigquery.BigQuery.TableDataListOption
-
- All Implemented Interfaces:
Serializable
- Enclosing interface:
- BigQuery
public static class BigQuery.TableDataListOption extends Object
Class for specifying table data list options.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)inthashCode()static BigQuery.TableDataListOptionpageSize(long pageSize)Returns an option to specify the maximum number of rows returned per page.static BigQuery.TableDataListOptionpageToken(String pageToken)Returns an option to specify the page token from which to start listing table data.static BigQuery.TableDataListOptionstartIndex(long index)Returns an option that sets the zero-based index of the row from which to start listing table data.StringtoString()
-
-
-
Method Detail
-
pageSize
public static BigQuery.TableDataListOption pageSize(long pageSize)
Returns an option to specify the maximum number of rows returned per page.
-
pageToken
public static BigQuery.TableDataListOption pageToken(String pageToken)
Returns an option to specify the page token from which to start listing table data.
-
startIndex
public static BigQuery.TableDataListOption startIndex(long index)
Returns an option that sets the zero-based index of the row from which to start listing table data.
-
-