Package com.google.cloud.bigquery
Enum BigQuery.DatasetField
- java.lang.Object
-
- java.lang.Enum<BigQuery.DatasetField>
-
- com.google.cloud.bigquery.BigQuery.DatasetField
-
- All Implemented Interfaces:
com.google.cloud.FieldSelector
,Serializable
,Comparable<BigQuery.DatasetField>
- Enclosing interface:
- BigQuery
public static enum BigQuery.DatasetField extends Enum<BigQuery.DatasetField> implements com.google.cloud.FieldSelector
Fields of a BigQuery Dataset resource.- See Also:
- Dataset Resource
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESS
CREATION_TIME
DATASET_REFERENCE
DEFAULT_TABLE_EXPIRATION_MS
DESCRIPTION
ETAG
FRIENDLY_NAME
ID
LABELS
LAST_MODIFIED_TIME
LOCATION
SELF_LINK
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getSelector()
static BigQuery.DatasetField
valueOf(String name)
Returns the enum constant of this type with the specified name.static BigQuery.DatasetField[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCESS
public static final BigQuery.DatasetField ACCESS
-
CREATION_TIME
public static final BigQuery.DatasetField CREATION_TIME
-
DATASET_REFERENCE
public static final BigQuery.DatasetField DATASET_REFERENCE
-
DEFAULT_TABLE_EXPIRATION_MS
public static final BigQuery.DatasetField DEFAULT_TABLE_EXPIRATION_MS
-
DESCRIPTION
public static final BigQuery.DatasetField DESCRIPTION
-
ETAG
public static final BigQuery.DatasetField ETAG
-
FRIENDLY_NAME
public static final BigQuery.DatasetField FRIENDLY_NAME
-
ID
public static final BigQuery.DatasetField ID
-
LABELS
public static final BigQuery.DatasetField LABELS
-
LAST_MODIFIED_TIME
public static final BigQuery.DatasetField LAST_MODIFIED_TIME
-
LOCATION
public static final BigQuery.DatasetField LOCATION
-
SELF_LINK
public static final BigQuery.DatasetField SELF_LINK
-
-
Method Detail
-
values
public static BigQuery.DatasetField[] 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.DatasetField c : BigQuery.DatasetField.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.DatasetField 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
-
-