public enum PageStoreType extends Enum<PageStoreType>
Enum Constant and Description |
---|
LOCAL
A simple store with pages on the local filesystem.
|
MEM
A simple store with pages on the memory (HeapByteBuffer).
|
ROCKS
A store that utilizes RocksDB to store and retrieve pages.
|
Modifier and Type | Method and Description |
---|---|
double |
getOverheadRatio() |
static PageStoreType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageStoreType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageStoreType LOCAL
public static final PageStoreType ROCKS
public static final PageStoreType MEM
public static PageStoreType[] values()
for (PageStoreType c : PageStoreType.values()) System.out.println(c);
public static PageStoreType 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 nullpublic double getOverheadRatio()
Copyright © 2023. All Rights Reserved.