Uses of Class
p2pMapReduce.mapreduceModule.input.InputFormat

Packages that use InputFormat
p2pMapReduce.mapreduceModule Collection of class to implement a map reduce framework. 
p2pMapReduce.mapreduceModule.input   
 

Uses of InputFormat in p2pMapReduce.mapreduceModule
 

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

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

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

Uses of InputFormat in p2pMapReduce.mapreduceModule.input
 

Subclasses of InputFormat in p2pMapReduce.mapreduceModule.input
 class TextFileInputFormat
          Read input text files and generate the InputSplit Each InputSplit is a TextFileInputSplit and always terminate with a whole text line.