public static enum EdgeProperty.DataMovementType extends Enum<EdgeProperty.DataMovementType>
| Enum Constant and Description |
|---|
BROADCAST
Output on this edge produced by any source task is available to all
destination tasks.
|
CUSTOM
Custom routing defined by the user.
|
ONE_TO_ONE
Output on this edge produced by the i-th source task is available to the
i-th destination task.
|
SCATTER_GATHER
The i-th output on this edge produced by all source tasks is available to
the same destination task.
|
| Modifier and Type | Method and Description |
|---|---|
static EdgeProperty.DataMovementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EdgeProperty.DataMovementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdgeProperty.DataMovementType ONE_TO_ONE
public static final EdgeProperty.DataMovementType BROADCAST
public static final EdgeProperty.DataMovementType SCATTER_GATHER
public static final EdgeProperty.DataMovementType CUSTOM
public static EdgeProperty.DataMovementType[] values()
for (EdgeProperty.DataMovementType c : EdgeProperty.DataMovementType.values()) System.out.println(c);
public static EdgeProperty.DataMovementType 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 © 2022 Apache Software Foundation. All rights reserved.