public static enum RowFormatInfo.FormatKind extends Enum<RowFormatInfo.FormatKind>
Enum Constant and Description |
---|
DELIMITED
The delimited rows.
|
SERDE
Using user defined serialization facilities.
|
Modifier and Type | Method and Description |
---|---|
static RowFormatInfo.FormatKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RowFormatInfo.FormatKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RowFormatInfo.FormatKind DELIMITED
public static final RowFormatInfo.FormatKind SERDE
public static RowFormatInfo.FormatKind[] values()
for (RowFormatInfo.FormatKind c : RowFormatInfo.FormatKind.values()) System.out.println(c);
public static RowFormatInfo.FormatKind 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 © 2011–2019 Asakusa Framework Team. All rights reserved.