Uses of Class
p2pMapReduce.mapreduceModule.output.OutputFormat

Packages that use OutputFormat
p2pMapReduce.mapreduceModule Collection of class to implement a map reduce framework. 
p2pMapReduce.mapreduceModule.output   
 

Uses of OutputFormat in p2pMapReduce.mapreduceModule
 

Methods in p2pMapReduce.mapreduceModule that return OutputFormat
 OutputFormat JobConf.getOutputFormat()
          Get the OutputFormat implementation for the map-reduce job, defaults to TextOutputFormat if not specified explicity.
 

Methods in p2pMapReduce.mapreduceModule that return types with arguments of type OutputFormat
 java.lang.Class<? extends OutputFormat<?,?>> JobContext.getOutputFormatClass()
          Get the OutputFormat class for the job.
 java.lang.Class<? extends OutputFormat<?,?>> JobContextImpl.getOutputFormatClass()
          Get the OutputFormat class for the job.
 java.lang.Class<? extends OutputFormat<?,?>> WrappedMapper.Context.getOutputFormatClass()
           
 java.lang.Class<? extends OutputFormat<?,?>> WrappedReducer.Context.getOutputFormatClass()
           
 

Method parameters in p2pMapReduce.mapreduceModule with type arguments of type OutputFormat
 void JobConf.setOutputFormat(java.lang.Class<? extends OutputFormat> theClass)
          Set the OutputFormat implementation for the map-reduce job.
 void Job.setOutputFormatClass(java.lang.Class<? extends OutputFormat> cls)
          Set the OutputFormat for the job.
 

Uses of OutputFormat in p2pMapReduce.mapreduceModule.output
 

Subclasses of OutputFormat in p2pMapReduce.mapreduceModule.output
 class TextFileOutputFormat<K,V>