public enum GlobalCommType extends Enum<GlobalCommType>
| Enum Constant and Description | 
|---|
| BROADCASTBroadcasted value | 
| REDUCE_OPERATIONSReduceOperation object | 
| REDUCED_VALUEReduced value object | 
| SPECIAL_COUNTSpecial 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.