public enum ParallelFetchDisposition extends Enum<ParallelFetchDisposition>
Java class for ParallelFetchDisposition.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ParallelFetchDisposition">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="wide"/>
<enumeration value="tall"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
TALL
Indicates row oriented parallelization where a thread is spawned for one or more graph row roots.
|
WIDE
Indicates graph oriented parallelization where threads are spawned as the graph is explored and assembled.
|
| Modifier and Type | Method and Description |
|---|---|
static ParallelFetchDisposition |
fromValue(String v) |
String |
value() |
static ParallelFetchDisposition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParallelFetchDisposition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParallelFetchDisposition WIDE
public static final ParallelFetchDisposition TALL
public static ParallelFetchDisposition[] values()
for (ParallelFetchDisposition c : ParallelFetchDisposition.values()) System.out.println(c);
public static ParallelFetchDisposition 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 ParallelFetchDisposition fromValue(String v)
Copyright © 2024. All Rights Reserved.