Package com.google.cloud.bigquery
Class JobStatistics.QueryStatistics.StatementType
- java.lang.Object
-
- com.google.cloud.StringEnumValue
-
- com.google.cloud.bigquery.JobStatistics.QueryStatistics.StatementType
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- JobStatistics.QueryStatistics
public static final class JobStatistics.QueryStatistics.StatementType extends com.google.cloud.StringEnumValue
StatementType represents possible types of SQL statements reported as part of the QueryStatistics of a BigQuery job.- See Also:
- Serialized Form
-
-
Field Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JobStatistics.QueryStatistics.StatementType
valueOf(String constant)
Get the State for the given String constant, and allow unrecognized values.static JobStatistics.QueryStatistics.StatementType
valueOfStrict(String constant)
Get the StatementType for the given String constant, and throw an exception if the constant is not recognized.static JobStatistics.QueryStatistics.StatementType[]
values()
Return the known values for State.
-
-
-
Field Detail
-
SELECT
public static final JobStatistics.QueryStatistics.StatementType SELECT
-
UPDATE
public static final JobStatistics.QueryStatistics.StatementType UPDATE
-
INSERT
public static final JobStatistics.QueryStatistics.StatementType INSERT
-
DELETE
public static final JobStatistics.QueryStatistics.StatementType DELETE
-
CREATE_TABLE
public static final JobStatistics.QueryStatistics.StatementType CREATE_TABLE
-
CREATE_TABLE_AS_SELECT
public static final JobStatistics.QueryStatistics.StatementType CREATE_TABLE_AS_SELECT
-
CREATE_VIEW
public static final JobStatistics.QueryStatistics.StatementType CREATE_VIEW
-
CREATE_MODEL
public static final JobStatistics.QueryStatistics.StatementType CREATE_MODEL
-
CREATE_FUNCTION
public static final JobStatistics.QueryStatistics.StatementType CREATE_FUNCTION
-
CREATE_PROCEDURE
public static final JobStatistics.QueryStatistics.StatementType CREATE_PROCEDURE
-
ALTER_TABLE
public static final JobStatistics.QueryStatistics.StatementType ALTER_TABLE
-
ALTER_VIEW
public static final JobStatistics.QueryStatistics.StatementType ALTER_VIEW
-
DROP_TABLE
public static final JobStatistics.QueryStatistics.StatementType DROP_TABLE
-
DROP_VIEW
public static final JobStatistics.QueryStatistics.StatementType DROP_VIEW
-
DROP_FUNCTION
public static final JobStatistics.QueryStatistics.StatementType DROP_FUNCTION
-
DROP_PROCEDURE
public static final JobStatistics.QueryStatistics.StatementType DROP_PROCEDURE
-
MERGE
public static final JobStatistics.QueryStatistics.StatementType MERGE
-
-
Method Detail
-
valueOfStrict
public static JobStatistics.QueryStatistics.StatementType valueOfStrict(String constant)
Get the StatementType for the given String constant, and throw an exception if the constant is not recognized.
-
valueOf
public static JobStatistics.QueryStatistics.StatementType valueOf(String constant)
Get the State for the given String constant, and allow unrecognized values.
-
values
public static JobStatistics.QueryStatistics.StatementType[] values()
Return the known values for State.
-
-