public static enum IndexOptions.IndexType extends Enum<IndexOptions.IndexType>
Enum Constant and Description |
---|
Disk
Disk index where the index data is read from disk as needed during query answering.
|
Memory
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static IndexOptions.IndexType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexOptions.IndexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final IndexOptions.IndexType Memory
IndexOptions.PERSIST
configuration option. This type of index is only suitable
for testing and prototyping.public static final IndexOptions.IndexType Disk
public static IndexOptions.IndexType[] values()
for (IndexOptions.IndexType c : IndexOptions.IndexType.values()) System.out.println(c);
public static IndexOptions.IndexType 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 © 2010-2016 Stardog Union. All Rights Reserved.