public enum BlockStoreType extends Enum<BlockStoreType>
Enum Constant and Description |
---|
FILE
The entire block is written to a single file.
|
PAGE
The block is written to the page cache which is implemented in LocalCacheManager.
|
Modifier and Type | Method and Description |
---|---|
static BlockStoreType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlockStoreType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockStoreType FILE
public static final BlockStoreType PAGE
public static BlockStoreType[] values()
for (BlockStoreType c : BlockStoreType.values()) System.out.println(c);
public static BlockStoreType 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 © 2023. All Rights Reserved.