public enum DataExchange extends Enum<DataExchange>
Enum Constant and Description |
---|
AGGREGATE
Aggregation.
|
BROADCAST
Broadcast.
|
MOVE
Just copy/move data-set.
|
NOTHING
Does not exchange any data.
|
SCATTER_GATHER
Scatter-gather.
|
SHUFFLE
Shuffle (and sort).
|
UNKNOWN
Unknown.
|
Modifier and Type | Method and Description |
---|---|
static DataExchange |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataExchange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataExchange NOTHING
public static final DataExchange MOVE
public static final DataExchange SCATTER_GATHER
public static final DataExchange AGGREGATE
public static final DataExchange SHUFFLE
public static final DataExchange BROADCAST
public static final DataExchange UNKNOWN
public static DataExchange[] values()
for (DataExchange c : DataExchange.values()) System.out.println(c);
public static DataExchange 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 © 2011–2019 Asakusa Framework Team. All rights reserved.