Enum Dialect.DialectValueCase
- java.lang.Object
-
- java.lang.Enum<Dialect.DialectValueCase>
-
- com.google.cloud.bigquery.migration.v2.Dialect.DialectValueCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,Serializable
,Comparable<Dialect.DialectValueCase>
- Enclosing class:
- Dialect
public static enum Dialect.DialectValueCase extends Enum<Dialect.DialectValueCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Dialect.DialectValueCase
forNumber(int value)
int
getNumber()
static Dialect.DialectValueCase
valueOf(int value)
Deprecated.static Dialect.DialectValueCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static Dialect.DialectValueCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BIGQUERY_DIALECT
public static final Dialect.DialectValueCase BIGQUERY_DIALECT
-
HIVEQL_DIALECT
public static final Dialect.DialectValueCase HIVEQL_DIALECT
-
REDSHIFT_DIALECT
public static final Dialect.DialectValueCase REDSHIFT_DIALECT
-
TERADATA_DIALECT
public static final Dialect.DialectValueCase TERADATA_DIALECT
-
ORACLE_DIALECT
public static final Dialect.DialectValueCase ORACLE_DIALECT
-
SPARKSQL_DIALECT
public static final Dialect.DialectValueCase SPARKSQL_DIALECT
-
SNOWFLAKE_DIALECT
public static final Dialect.DialectValueCase SNOWFLAKE_DIALECT
-
NETEZZA_DIALECT
public static final Dialect.DialectValueCase NETEZZA_DIALECT
-
AZURE_SYNAPSE_DIALECT
public static final Dialect.DialectValueCase AZURE_SYNAPSE_DIALECT
-
VERTICA_DIALECT
public static final Dialect.DialectValueCase VERTICA_DIALECT
-
SQL_SERVER_DIALECT
public static final Dialect.DialectValueCase SQL_SERVER_DIALECT
-
POSTGRESQL_DIALECT
public static final Dialect.DialectValueCase POSTGRESQL_DIALECT
-
PRESTO_DIALECT
public static final Dialect.DialectValueCase PRESTO_DIALECT
-
MYSQL_DIALECT
public static final Dialect.DialectValueCase MYSQL_DIALECT
-
DIALECTVALUE_NOT_SET
public static final Dialect.DialectValueCase DIALECTVALUE_NOT_SET
-
-
Method Detail
-
values
public static Dialect.DialectValueCase[] 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 (Dialect.DialectValueCase c : Dialect.DialectValueCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Dialect.DialectValueCase 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
-
valueOf
@Deprecated public static Dialect.DialectValueCase valueOf(int value)
Deprecated.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:
value
- 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
-
forNumber
public static Dialect.DialectValueCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
-
-