private static enum TableImpl.RowStatus extends java.lang.Enum<TableImpl.RowStatus>
| Enum Constant and Description |
|---|
DELETED |
INIT |
INVALID_PAGE |
INVALID_ROW |
NORMAL |
OVERFLOW |
VALID |
| Modifier and Type | Method and Description |
|---|---|
static TableImpl.RowStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TableImpl.RowStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableImpl.RowStatus INIT
public static final TableImpl.RowStatus INVALID_PAGE
public static final TableImpl.RowStatus INVALID_ROW
public static final TableImpl.RowStatus VALID
public static final TableImpl.RowStatus DELETED
public static final TableImpl.RowStatus NORMAL
public static final TableImpl.RowStatus OVERFLOW
public static TableImpl.RowStatus[] values()
for (TableImpl.RowStatus c : TableImpl.RowStatus.values()) System.out.println(c);
public static TableImpl.RowStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null