protected static enum ColumnState.State extends Enum<ColumnState.State>
| Enum Constant and Description |
|---|
LOOK_AHEAD
Indicates that the column has data saved
in the overflow batch.
|
NEW_LOOK_AHEAD
Like LOOK_AHEAD, but indicates the special case that the column
was added after overflow, so there is no vector for the column
in the harvested batch.
|
NORMAL
Column is in the normal state of writing with no overflow
in effect.
|
OVERFLOW
Like NORMAL, but means that the data has overflowed and the
column's data for the current row appears in the new,
overflow batch.
|
| Modifier and Type | Method and Description |
|---|---|
static ColumnState.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnState.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnState.State NORMAL
public static final ColumnState.State OVERFLOW
public static final ColumnState.State LOOK_AHEAD
public static final ColumnState.State NEW_LOOK_AHEAD
public static ColumnState.State[] values()
for (ColumnState.State c : ColumnState.State.values()) System.out.println(c);
public static ColumnState.State 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 © 2022 The Apache Software Foundation. All rights reserved.