Package org.projectnessie.model
Enum SqlView.Dialect
- java.lang.Object
-
- java.lang.Enum<SqlView.Dialect>
-
- org.projectnessie.model.SqlView.Dialect
-
- All Implemented Interfaces:
Serializable,Comparable<SqlView.Dialect>
- Enclosing class:
- SqlView
public static enum SqlView.Dialect extends Enum<SqlView.Dialect>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SqlView.DialectvalueOf(String name)Returns the enum constant of this type with the specified name.static SqlView.Dialect[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HIVE
public static final SqlView.Dialect HIVE
-
SPARK
public static final SqlView.Dialect SPARK
-
DREMIO
public static final SqlView.Dialect DREMIO
-
PRESTO
public static final SqlView.Dialect PRESTO
-
-
Method Detail
-
values
public static SqlView.Dialect[] 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 (SqlView.Dialect c : SqlView.Dialect.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SqlView.Dialect 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
-
-