public enum StandardSQLCapabilities extends Enum<StandardSQLCapabilities> implements Capability
Enum Constant and Description |
---|
BIGQUERY
Defines that factory implements support for BigQuery specific language
|
SQL92
Defines that factory implements SQL92 language
|
Modifier and Type | Method and Description |
---|---|
static StandardSQLCapabilities |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StandardSQLCapabilities[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardSQLCapabilities SQL92
public static final StandardSQLCapabilities BIGQUERY
public static StandardSQLCapabilities[] values()
for (StandardSQLCapabilities c : StandardSQLCapabilities.values()) System.out.println(c);
public static StandardSQLCapabilities 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 nullCopyright © 2023 Cask Data, Inc. Licensed under the Apache License, Version 2.0.