@Generated public enum DataSourceFormat extends Enum<DataSourceFormat>
Enum Constant and Description |
---|
AVRO |
CSV |
DELTA |
DELTASHARING |
JSON |
ORC |
PARQUET |
TEXT |
UNITY_CATALOG |
Modifier and Type | Method and Description |
---|---|
static DataSourceFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataSourceFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataSourceFormat AVRO
public static final DataSourceFormat CSV
public static final DataSourceFormat DELTA
public static final DataSourceFormat DELTASHARING
public static final DataSourceFormat JSON
public static final DataSourceFormat ORC
public static final DataSourceFormat PARQUET
public static final DataSourceFormat TEXT
public static final DataSourceFormat UNITY_CATALOG
public static DataSourceFormat[] values()
for (DataSourceFormat c : DataSourceFormat.values()) System.out.println(c);
public static DataSourceFormat 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. All rights reserved.