public enum EFileFormat extends Enum<EFileFormat>
Enum Constant and Description |
---|
delimitedtext |
json |
orc |
parquet |
rcfile |
sffAVRO |
sffFILEFORMAT_GENERIC |
sffPARQUET |
sffSTORAGEHANDLER |
sffTABLEFILEFORMAT |
sffTBLORCFILE |
sffTBLRCFILE |
sffTBLSEQUENCEFILE |
sffTBLTEXTFILE |
unknown |
Modifier and Type | Method and Description |
---|---|
static EFileFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EFileFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EFileFormat sffTBLSEQUENCEFILE
public static final EFileFormat sffTBLTEXTFILE
public static final EFileFormat sffTBLRCFILE
public static final EFileFormat sffTBLORCFILE
public static final EFileFormat sffTABLEFILEFORMAT
public static final EFileFormat sffSTORAGEHANDLER
public static final EFileFormat sffFILEFORMAT_GENERIC
public static final EFileFormat sffPARQUET
public static final EFileFormat sffAVRO
public static final EFileFormat delimitedtext
public static final EFileFormat rcfile
public static final EFileFormat orc
public static final EFileFormat parquet
public static final EFileFormat json
public static final EFileFormat unknown
public static EFileFormat[] values()
for (EFileFormat c : EFileFormat.values()) System.out.println(c);
public static EFileFormat 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