public static enum IndexData.EntryType extends Enum<IndexData.EntryType>
Enum Constant and Description |
---|
ALWAYS_FIRST
comparable type indicating this Entry should always compare less than
valid RowIds
|
ALWAYS_LAST
comparable type indicating this Entry should always compare greater
than valid RowIds
|
FIRST_VALID
comparable type indicating this Entry should always compare less than
other valid entries with equal entryBytes
|
LAST_VALID
comparable type indicating this Entry should always compare greater
than other valid entries with equal entryBytes
|
NORMAL
comparable type indicating this RowId should always compare
normally
|
Modifier and Type | Method and Description |
---|---|
static IndexData.EntryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexData.EntryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexData.EntryType ALWAYS_FIRST
public static final IndexData.EntryType FIRST_VALID
public static final IndexData.EntryType NORMAL
public static final IndexData.EntryType LAST_VALID
public static final IndexData.EntryType ALWAYS_LAST
public static IndexData.EntryType[] values()
for (IndexData.EntryType c : IndexData.EntryType.values()) System.out.println(c);
public static IndexData.EntryType 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 © 2005–2024 OpenHMS. All rights reserved.