|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use MapReduceCommand.OutputType | |
|---|---|
| com.mongodb | Main package with core files. |
| Uses of MapReduceCommand.OutputType in com.mongodb |
|---|
| Methods in com.mongodb that return MapReduceCommand.OutputType | |
|---|---|
MapReduceCommand.OutputType |
MapReduceCommand.getOutputType()
Gets the OutputType for this instance. |
static MapReduceCommand.OutputType |
MapReduceCommand.OutputType.valueOf(String name)
Returns the enum constant of this type with the specified name. |
static MapReduceCommand.OutputType[] |
MapReduceCommand.OutputType.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods in com.mongodb with parameters of type MapReduceCommand.OutputType | |
|---|---|
MapReduceOutput |
DBCollection.mapReduce(String map,
String reduce,
String outputTarget,
MapReduceCommand.OutputType outputType,
DBObject query)
performs a map reduce operation Specify an outputType to control job execution * INLINE - Return results inline * REPLACE - Replace the output collection with the job output * MERGE - Merge the job output with the existing contents of outputTarget * REDUCE - Reduce the job output with the existing contents of outputTarget |
MapReduceOutput |
DBCollection.mapReduce(String map,
String reduce,
String outputTarget,
MapReduceCommand.OutputType outputType,
DBObject query,
ReadPreference readPrefs)
performs a map reduce operation Specify an outputType to control job execution * INLINE - Return results inline * REPLACE - Replace the output collection with the job output * MERGE - Merge the job output with the existing contents of outputTarget * REDUCE - Reduce the job output with the existing contents of outputTarget |
| Constructors in com.mongodb with parameters of type MapReduceCommand.OutputType | |
|---|---|
MapReduceCommand(DBCollection inputCollection,
String map,
String reduce,
String outputCollection,
MapReduceCommand.OutputType type,
DBObject query)
Represents the command for a map reduce operation Runs the command in REPLACE output type to a named collection |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||