|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<RowId.Type> com.healthmarketscience.jackcess.RowId.Type
public static enum RowId.Type
type attributes for RowIds which simplify comparisons
Enum Constant Summary | |
---|---|
ALWAYS_FIRST
comparable type indicating this RowId should always compare less than normal RowIds |
|
ALWAYS_LAST
comparable type indicating this RowId should always compare greater than normal RowIds |
|
NORMAL
comparable type indicating this RowId should always compare normally |
Method Summary | |
---|---|
static RowId.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static RowId.Type[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final RowId.Type ALWAYS_FIRST
public static final RowId.Type NORMAL
public static final RowId.Type ALWAYS_LAST
Method Detail |
---|
public static RowId.Type[] values()
for (RowId.Type c : RowId.Type.values()) System.out.println(c);
public static RowId.Type valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |