@InterfaceAudience.Public @InterfaceStability.Evolving public static enum AsyncKuduScanner.RowDataFormat extends Enum<AsyncKuduScanner.RowDataFormat>
RowResult
and RowResultIterator
interfaces so it's transparent to
application code.Enum Constant and Description |
---|
COLUMNAR
Server is expected to return scanner result data in columnar layout.
|
ROWWISE
Server is expected to return scanner result data in row-wise layout.
|
Modifier and Type | Method and Description |
---|---|
static AsyncKuduScanner.RowDataFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AsyncKuduScanner.RowDataFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AsyncKuduScanner.RowDataFormat ROWWISE
public static final AsyncKuduScanner.RowDataFormat COLUMNAR
public static AsyncKuduScanner.RowDataFormat[] values()
for (AsyncKuduScanner.RowDataFormat c : AsyncKuduScanner.RowDataFormat.values()) System.out.println(c);
public static AsyncKuduScanner.RowDataFormat 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