public enum DistributionPattern extends Enum<DistributionPattern>
| Enum Constant and Description |
|---|
BIPARTITE
Each subtask of the producing Nephele task is wired to each subtask of the consuming Nephele task.
|
POINTWISE
The i-th subtask of the producing Nephele task is wired to the i-th subtask of the consuming Nephele task.
|
| Modifier and Type | Method and Description |
|---|---|
static DistributionPattern |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DistributionPattern[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistributionPattern BIPARTITE
public static final DistributionPattern POINTWISE
public static DistributionPattern[] values()
for (DistributionPattern c : DistributionPattern.values()) System.out.println(c);
public static DistributionPattern 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 © 2014 The Apache Software Foundation. All rights reserved.