public enum ParallelizationStrategy extends Enum<ParallelizationStrategy>
Enum Constant and Description |
---|
SEGMENTED |
TASK_STEALING |
TASK_STEALING_COUNTED |
Modifier and Type | Method and Description |
---|---|
String |
toKey() |
String |
toString() |
static ParallelizationStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParallelizationStrategy[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final ParallelizationStrategy SEGMENTED
public static final ParallelizationStrategy TASK_STEALING
public static final ParallelizationStrategy TASK_STEALING_COUNTED
public String toKey()
public String toString()
toString
in class Enum<ParallelizationStrategy>
public static ParallelizationStrategy 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 static ParallelizationStrategy[] values()
for (ParallelizationStrategy c : ParallelizationStrategy.values()) System.out.println(c);
Copyright © 2015. All rights reserved.