Uses of Class
com.google.cloud.bigquery.JobStatus.State
-
Packages that use JobStatus.State Package Description com.google.cloud.bigquery A client for BigQuery – A fully managed, petabyte scale, low cost enterprise data warehouse for analytics. -
-
Uses of JobStatus.State in com.google.cloud.bigquery
Fields in com.google.cloud.bigquery declared as JobStatus.State Modifier and Type Field Description static JobStatus.State
JobStatus.State. DONE
The BigQuery Job has completed either succeeding or failing.static JobStatus.State
JobStatus.State. PENDING
The BigQuery Job is waiting to be executed.static JobStatus.State
JobStatus.State. RUNNING
The BigQuery Job is being executed.Methods in com.google.cloud.bigquery that return JobStatus.State Modifier and Type Method Description JobStatus.State
JobStatus. getState()
Returns the state of the job.static JobStatus.State
JobStatus.State. valueOf(String constant)
Get the State for the given String constant, and allow unrecognized values.static JobStatus.State
JobStatus.State. valueOfStrict(String constant)
Get the State for the given String constant, and throw an exception if the constant is not recognized.static JobStatus.State[]
JobStatus.State. values()
Return the known values for State.Methods in com.google.cloud.bigquery with parameters of type JobStatus.State Modifier and Type Method Description static BigQuery.JobListOption
BigQuery.JobListOption. stateFilter(JobStatus.State... stateFilters)
Returns an option to list only jobs that match the provided state filters.
-