public enum MapreduceType extends Enum<MapreduceType>
| Modifier and Type | Method and Description |
|---|---|
static MapreduceType |
fromString(String value)
Finds the type represented by the value given
|
static MapreduceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapreduceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapreduceType REPLACE
public static final MapreduceType MERGE
public static final MapreduceType REDUCE
public static final MapreduceType INLINE
public static MapreduceType[] values()
for (MapreduceType c : MapreduceType.values()) System.out.println(c);
public static MapreduceType 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 nullpublic static MapreduceType fromString(String value)
value - the value to look up