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