public enum GlobalCommType extends Enum<GlobalCommType>
Enum Constant and Description |
---|
BROADCAST
Broadcasted value
|
REDUCE_OPERATIONS
ReduceOperation object
|
REDUCED_VALUE
Reduced value object
|
SPECIAL_COUNT
Special count used internally for counting requests
|
Modifier and Type | Method and Description |
---|---|
static GlobalCommType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GlobalCommType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlobalCommType REDUCE_OPERATIONS
public static final GlobalCommType REDUCED_VALUE
public static final GlobalCommType BROADCAST
public static final GlobalCommType SPECIAL_COUNT
public static GlobalCommType[] values()
for (GlobalCommType c : GlobalCommType.values()) System.out.println(c);
public static GlobalCommType 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-2020 The Apache Software Foundation. All Rights Reserved.