This project has retired. For details please refer to its Attic page.

Uses of Class
org.apache.hadoop.mrunit.mapreduce.MapDriver

Packages that use MapDriver
org.apache.hadoop.mrunit.mapreduce   
 

Uses of MapDriver in org.apache.hadoop.mrunit.mapreduce
 

Methods in org.apache.hadoop.mrunit.mapreduce that return MapDriver
static
<K1,V1,K2,V2>
MapDriver<K1,V1,K2,V2>
MapDriver.newMapDriver()
          Returns a new MapDriver without having to specify the generic types on the right hand side of the object create statement.
static
<K1,V1,K2,V2>
MapDriver<K1,V1,K2,V2>
MapDriver.newMapDriver(org.apache.hadoop.mapreduce.Mapper<K1,V1,K2,V2> mapper)
          Returns a new MapDriver without having to specify the generic types on the right hand side of the object create statement.
 MapDriver<K1,V1,K2,V2> MapDriver.withConfiguration(org.apache.hadoop.conf.Configuration configuration)
           
 MapDriver<K1,V1,K2,V2> MapDriver.withCounters(org.apache.hadoop.mapreduce.Counters ctrs)
          Sets the counters to use and returns self for fluent style
 MapDriver<K1,V1,K2,V2> MapDriver.withInput(K1 key, V1 val)
          Identical to setInput() but returns self for fluent programming style
 MapDriver<K1,V1,K2,V2> MapDriver.withInput(Pair<K1,V1> inputRecord)
          Identical to setInput() but returns self for fluent programming style
 MapDriver<K1,V1,K2,V2> MapDriver.withInputFromString(String input)
          Identical to setInputFromString, but with a fluent programming style
 MapDriver<K1,V1,K2,V2> MapDriver.withInputKey(K1 key)
          Identical to setInputKey() but with fluent programming style
 MapDriver<K1,V1,K2,V2> MapDriver.withInputValue(V1 val)
          Identical to setInputValue() but with fluent programming style
 MapDriver<K1,V1,K2,V2> MapDriver.withMapper(org.apache.hadoop.mapreduce.Mapper<K1,V1,K2,V2> m)
          Sets the Mapper instance to use and returns self for fluent style
 MapDriver<K1,V1,K2,V2> MapDriver.withOutput(K2 key, V2 val)
          Functions like addOutput() but returns self for fluent programming style
 MapDriver<K1,V1,K2,V2> MapDriver.withOutput(Pair<K2,V2> outputRecord)
          Works like addOutput(), but returns self for fluent style
 MapDriver<K1,V1,K2,V2> MapDriver.withOutputFromString(String output)
          Identical to addOutputFromString, but with a fluent programming style
 



Copyright © 2012 Apache Software Foundation. All Rights Reserved.