Package com.google.cloud.bigquery
Enum BigQuery.ModelField
- java.lang.Object
-
- java.lang.Enum<BigQuery.ModelField>
-
- com.google.cloud.bigquery.BigQuery.ModelField
-
- All Implemented Interfaces:
com.google.cloud.FieldSelector
,Serializable
,Comparable<BigQuery.ModelField>
- Enclosing interface:
- BigQuery
public static enum BigQuery.ModelField extends Enum<BigQuery.ModelField> implements com.google.cloud.FieldSelector
Fields of a BigQuery Model resource.- See Also:
- Model Resource
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATION_TIME
DESCRIPTION
ETAG
EXPIRATION_TIME
FEATURE_COLUMNS
FRIENDLY_NAME
LABEL_COLUMNS
LABELS
LAST_MODIFIED_TIME
LOCATION
MODEL_REFERENCE
TRAINING_RUNS
TYPE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getSelector()
static BigQuery.ModelField
valueOf(String name)
Returns the enum constant of this type with the specified name.static BigQuery.ModelField[]
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.ModelField CREATION_TIME
-
DESCRIPTION
public static final BigQuery.ModelField DESCRIPTION
-
ETAG
public static final BigQuery.ModelField ETAG
-
EXPIRATION_TIME
public static final BigQuery.ModelField EXPIRATION_TIME
-
FRIENDLY_NAME
public static final BigQuery.ModelField FRIENDLY_NAME
-
LABELS
public static final BigQuery.ModelField LABELS
-
LAST_MODIFIED_TIME
public static final BigQuery.ModelField LAST_MODIFIED_TIME
-
LOCATION
public static final BigQuery.ModelField LOCATION
-
MODEL_REFERENCE
public static final BigQuery.ModelField MODEL_REFERENCE
-
TRAINING_RUNS
public static final BigQuery.ModelField TRAINING_RUNS
-
LABEL_COLUMNS
public static final BigQuery.ModelField LABEL_COLUMNS
-
FEATURE_COLUMNS
public static final BigQuery.ModelField FEATURE_COLUMNS
-
TYPE
public static final BigQuery.ModelField TYPE
-
-
Method Detail
-
values
public static BigQuery.ModelField[] 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.ModelField c : BigQuery.ModelField.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.ModelField 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
-
-