Package com.google.cloud.bigquery
Enum BigQuery.TableField
- java.lang.Object
-
- java.lang.Enum<BigQuery.TableField>
-
- com.google.cloud.bigquery.BigQuery.TableField
-
- All Implemented Interfaces:
com.google.cloud.FieldSelector
,Serializable
,Comparable<BigQuery.TableField>
- Enclosing interface:
- BigQuery
public static enum BigQuery.TableField extends Enum<BigQuery.TableField> implements com.google.cloud.FieldSelector
Fields of a BigQuery Table resource.- See Also:
- Table Resource
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATION_TIME
DESCRIPTION
ETAG
EXPIRATION_TIME
EXTERNAL_DATA_CONFIGURATION
FRIENDLY_NAME
ID
LABELS
LAST_MODIFIED_TIME
LOCATION
NUM_BYTES
NUM_LONG_TERM_BYTES
NUM_ROWS
RANGE_PARTITIONING
SCHEMA
SELF_LINK
STREAMING_BUFFER
TABLE_REFERENCE
TIME_PARTITIONING
TYPE
VIEW
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getSelector()
static BigQuery.TableField
valueOf(String name)
Returns the enum constant of this type with the specified name.static BigQuery.TableField[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATION_TIME
public static final BigQuery.TableField CREATION_TIME
-
DESCRIPTION
public static final BigQuery.TableField DESCRIPTION
-
ETAG
public static final BigQuery.TableField ETAG
-
EXPIRATION_TIME
public static final BigQuery.TableField EXPIRATION_TIME
-
EXTERNAL_DATA_CONFIGURATION
public static final BigQuery.TableField EXTERNAL_DATA_CONFIGURATION
-
FRIENDLY_NAME
public static final BigQuery.TableField FRIENDLY_NAME
-
ID
public static final BigQuery.TableField ID
-
LABELS
public static final BigQuery.TableField LABELS
-
LAST_MODIFIED_TIME
public static final BigQuery.TableField LAST_MODIFIED_TIME
-
LOCATION
public static final BigQuery.TableField LOCATION
-
NUM_BYTES
public static final BigQuery.TableField NUM_BYTES
-
NUM_LONG_TERM_BYTES
public static final BigQuery.TableField NUM_LONG_TERM_BYTES
-
NUM_ROWS
public static final BigQuery.TableField NUM_ROWS
-
SCHEMA
public static final BigQuery.TableField SCHEMA
-
SELF_LINK
public static final BigQuery.TableField SELF_LINK
-
STREAMING_BUFFER
public static final BigQuery.TableField STREAMING_BUFFER
-
TABLE_REFERENCE
public static final BigQuery.TableField TABLE_REFERENCE
-
TIME_PARTITIONING
public static final BigQuery.TableField TIME_PARTITIONING
-
RANGE_PARTITIONING
public static final BigQuery.TableField RANGE_PARTITIONING
-
TYPE
public static final BigQuery.TableField TYPE
-
VIEW
public static final BigQuery.TableField VIEW
-
-
Method Detail
-
values
public static BigQuery.TableField[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BigQuery.TableField c : BigQuery.TableField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BigQuery.TableField valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getSelector
public String getSelector()
- Specified by:
getSelector
in interfacecom.google.cloud.FieldSelector
-
-