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