public static final enum

MapReduceCommand.OutputType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.mongodb.MapReduceCommand.OutputType

Class Overview

INLINE - Return results inline, no result is written to the DB server REPLACE - Save the job output to a collection, replacing its previous content MERGE - Merge the job output with the existing contents of outputTarget collection REDUCE - Reduce the job output with the existing contents of outputTarget collection

Summary

Enum Values
MapReduceCommand.OutputType  INLINE   
MapReduceCommand.OutputType  MERGE   
MapReduceCommand.OutputType  REDUCE   
MapReduceCommand.OutputType  REPLACE   
Public Methods
static MapReduceCommand.OutputType valueOf(String name)
final static OutputType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final MapReduceCommand.OutputType INLINE

public static final MapReduceCommand.OutputType MERGE

public static final MapReduceCommand.OutputType REDUCE

public static final MapReduceCommand.OutputType REPLACE

Public Methods

public static MapReduceCommand.OutputType valueOf (String name)

public static final OutputType[] values ()