public enum StoreTypeEnum extends Enum<StoreTypeEnum>
Enum Constant and Description |
---|
RW
Indicate that the store is a read/write store.
|
WORM
Indicates that the store is a WORM (Write Once, Read Many) aka a journal
or a log-structured store.
|
Modifier and Type | Method and Description |
---|---|
byte |
getType() |
static StoreTypeEnum |
valueOf(byte type) |
static StoreTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StoreTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoreTypeEnum WORM
public static final StoreTypeEnum RW
public static StoreTypeEnum[] values()
for (StoreTypeEnum c : StoreTypeEnum.values()) System.out.println(c);
public static StoreTypeEnum 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 byte getType()
public static StoreTypeEnum valueOf(byte type)
Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.