public enum ConfigurationProperty extends Enum<ConfigurationProperty>
Java class for ConfigurationProperty.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ConfigurationProperty">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="cloudgraph.unique.checks"/>
<enumeration value="cloudgraph.query.fetchtype"/>
<enumeration value="cloudgraph.query.threadpool.size.min"/>
<enumeration value="cloudgraph.query.threadpool.size.max"/>
<enumeration value="cloudgraph.query.thread.depth.max"/>
<enumeration value="cloudgraph.tombstone.rows"/>
<enumeration value="cloudgraph.tombstone.rows.overwriteable"/>
<enumeration value="cloudgraph.maprdb.table.path.prefix"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CLOUDGRAPH___MAPRDB___TABLE___PATH___PREFIX
The path to prepend to all MAPRD-DB (M7) table names for tables found within a configuration.
|
CLOUDGRAPH___QUERY___FETCHTYPE
The type of fetch used when executing queries.
|
CLOUDGRAPH___QUERY___THREAD___DEPTH___MAX
The maximum graph traversal depth below which new query threads may be allocated when using 'parallel' for the value of the
cloudgraph.query.fetchtype configuration property.
|
CLOUDGRAPH___QUERY___THREADPOOL___SIZE___MAX
The maximum size of the query thread pool when using 'parallel' for the value of the
cloudgraph.query.fetchtype configuration property.
|
CLOUDGRAPH___QUERY___THREADPOOL___SIZE___MIN
The minimum or core size of the query thread pool when using 'parallel' for the value of the
cloudgraph.query.fetchtype configuration property.
|
CLOUDGRAPH___TOMBSTONE___ROWS
Whether to create a tombstone rows when deleting a graph roots.
|
CLOUDGRAPH___TOMBSTONE___ROWS___OVERWRITEABLE
Whether to ignore and overwrite tombstone rows when creating new graph roots.
|
CLOUDGRAPH___UNIQUE___CHECKS
Whether to first check for an existing matching row
key before creating/inserting new rows.
|
| Modifier and Type | Method and Description |
|---|---|
static ConfigurationProperty |
fromValue(String v) |
String |
value() |
static ConfigurationProperty |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationProperty CLOUDGRAPH___UNIQUE___CHECKS
public static final ConfigurationProperty CLOUDGRAPH___QUERY___FETCHTYPE
QueryFetchTypepublic static final ConfigurationProperty CLOUDGRAPH___QUERY___THREADPOOL___SIZE___MIN
public static final ConfigurationProperty CLOUDGRAPH___QUERY___THREADPOOL___SIZE___MAX
public static final ConfigurationProperty CLOUDGRAPH___QUERY___THREAD___DEPTH___MAX
public static final ConfigurationProperty CLOUDGRAPH___TOMBSTONE___ROWS
public static final ConfigurationProperty CLOUDGRAPH___TOMBSTONE___ROWS___OVERWRITEABLE
public static final ConfigurationProperty CLOUDGRAPH___MAPRDB___TABLE___PATH___PREFIX
public static ConfigurationProperty[] values()
for (ConfigurationProperty c : ConfigurationProperty.values()) System.out.println(c);
public static ConfigurationProperty 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 String value()
public static ConfigurationProperty fromValue(String v)
Copyright © 2017. All Rights Reserved.