public enum QueryFetchType extends Enum<QueryFetchType>
Java class for QueryFetchType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="QueryFetchType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="serial"/>
<enumeration value="parallel"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
PARALLEL
Use parallel or asynchronous fetching during query processing such as when assembling data graphs
|
SERIAL
Use serial or synchronous fetching during query processing such as when assembling data graphs
|
| Modifier and Type | Method and Description |
|---|---|
static QueryFetchType |
fromValue(String v) |
String |
value() |
static QueryFetchType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryFetchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryFetchType SERIAL
public static final QueryFetchType PARALLEL
public static QueryFetchType[] values()
for (QueryFetchType c : QueryFetchType.values()) System.out.println(c);
public static QueryFetchType 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 QueryFetchType fromValue(String v)
Copyright © 2017. All Rights Reserved.