public enum BigQueryErrorCode extends Enum<BigQueryErrorCode>
| Enum Constant and Description |
|---|
BIGQUERY_DATETIME_PARSING_ERROR |
BIGQUERY_FAILED_TO_EXECUTE_QUERY |
BIGQUERY_INVALID_SCHEMA |
BIGQUERY_VIEW_DESTINATION_TABLE_CREATION_FAILED |
UNKNOWN |
UNSUPPORTED |
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static BigQueryErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BigQueryErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BigQueryErrorCode BIGQUERY_VIEW_DESTINATION_TABLE_CREATION_FAILED
public static final BigQueryErrorCode BIGQUERY_DATETIME_PARSING_ERROR
public static final BigQueryErrorCode BIGQUERY_FAILED_TO_EXECUTE_QUERY
public static final BigQueryErrorCode BIGQUERY_INVALID_SCHEMA
public static final BigQueryErrorCode UNSUPPORTED
public static final BigQueryErrorCode UNKNOWN
public static BigQueryErrorCode[] values()
for (BigQueryErrorCode c : BigQueryErrorCode.values()) System.out.println(c);
public static BigQueryErrorCode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getCode()
Copyright © 2024. All rights reserved.