public enum BTreeTypeEnum extends Enum<BTreeTypeEnum>
Enum Constant and Description |
---|
IN_MEMORY
Pure in-memory BTree, not persisted on disk
|
MANAGED
A BTree associated with a RecordManager
|
PERSISTENT
In-memory BTree but persisted on disk
|
Modifier and Type | Method and Description |
---|---|
static BTreeTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BTreeTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BTreeTypeEnum IN_MEMORY
public static final BTreeTypeEnum PERSISTENT
public static final BTreeTypeEnum MANAGED
public static BTreeTypeEnum[] values()
for (BTreeTypeEnum c : BTreeTypeEnum.values()) System.out.println(c);
public static BTreeTypeEnum 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 © 2012-2013 Apache Mavibot Project Parent. All Rights Reserved.