public enum StructuredSchemaDialect extends Enum<StructuredSchemaDialect>
| Enum Constant and Description |
|---|
SPARK_SQL_TYPE_STRING
Spark SQL type string, e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static StructuredSchemaDialect |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructuredSchemaDialect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructuredSchemaDialect SPARK_SQL_TYPE_STRING
ARRAY<STRUCT<key: STRING, label: STRING>>.
Identifiers may be backquoted.public static StructuredSchemaDialect[] values()
for (StructuredSchemaDialect c : StructuredSchemaDialect.values()) System.out.println(c);
public static StructuredSchemaDialect 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 null