public static enum MapReduceCommand.OutputType extends java.lang.Enum<MapReduceCommand.OutputType>
| 枚举常量和说明 |
|---|
INLINE
Return results inline, no result is written to the DB server
|
MERGE
Merge the job output with the existing contents of outputTarget collection
|
REDUCE
Reduce the job output with the existing contents of outputTarget collection
|
REPLACE
Save the job output to a collection, replacing its previous content
|
| 限定符和类型 | 方法和说明 |
|---|---|
static MapReduceCommand.OutputType |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static MapReduceCommand.OutputType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final MapReduceCommand.OutputType REPLACE
public static final MapReduceCommand.OutputType MERGE
public static final MapReduceCommand.OutputType REDUCE
public static final MapReduceCommand.OutputType INLINE
public static MapReduceCommand.OutputType[] values()
for (MapReduceCommand.OutputType c : MapReduceCommand.OutputType.values()) System.out.println(c);
public static MapReduceCommand.OutputType valueOf(java.lang.String name)
name - 要返回的枚举常量的名称。java.lang.IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException - 如果参数为空值