Uses of Class
com.ebay.erl.mobius.core.mapred.AbstractMobiusMapper

Packages that use AbstractMobiusMapper
com.ebay.erl.mobius.core.builder Provides built-in builders to build Datasets. 
com.ebay.erl.mobius.core.mapred Provides Mobius-specific Hadoop classes. 
org.apache.hadoop.mapred.lib Contains the Mobius-specific DelegatingInputFormat. 
 

Uses of AbstractMobiusMapper in com.ebay.erl.mobius.core.builder
 

Fields in com.ebay.erl.mobius.core.builder with type parameters of type AbstractMobiusMapper
protected  java.lang.Class<? extends AbstractMobiusMapper> Dataset.mapper
          The corresponding AbstractMobiusMapper implementation which parse the records of this dataset input Tuple.
 

Methods in com.ebay.erl.mobius.core.builder that return types with arguments of type AbstractMobiusMapper
 java.lang.Class<? extends AbstractMobiusMapper> Dataset.getMapper()
          Get the AbstractMobiusMapper of this dataset.
 

Method parameters in com.ebay.erl.mobius.core.builder with type arguments of type AbstractMobiusMapper
protected  void TSVDataset.setMapper(java.lang.Class<? extends AbstractMobiusMapper> mapper)
          only accept a mapper which is the subclass of TSVMapper
protected  void SeqFileDataset.setMapper(java.lang.Class<? extends AbstractMobiusMapper> mapper)
          Set the AbstractMobiusMapper for this dataset.
protected  void Dataset.setMapper(java.lang.Class<? extends AbstractMobiusMapper> mapper)
          Set the AbstractMobiusMapper for this dataset.
 

Uses of AbstractMobiusMapper in com.ebay.erl.mobius.core.mapred
 

Subclasses of AbstractMobiusMapper in com.ebay.erl.mobius.core.mapred
 class DefaultSeqFileMapper
          A default implementation of SequenceFileMapper supporting sequence file with NullWritable as its key type and Tuple as its value type.
 class SequenceFileMapper<K,V>
          The base class for parsing a SequenceFile into Tuple, sub-class needs to override #parseKey(Object) and #parseValue(Object).
 class TSVMapper
          A mapper that parses the values (in Text format) into Tuple elements.
 

Method parameters in com.ebay.erl.mobius.core.mapred with type arguments of type AbstractMobiusMapper
static void MobiusMultiInputs.addInputPath(org.apache.hadoop.mapred.JobConf conf, org.apache.hadoop.fs.Path anInput, java.lang.Class<? extends org.apache.hadoop.mapred.InputFormat> inputFormatClass, java.lang.Class<? extends AbstractMobiusMapper> mapperClass, java.lang.String datasetID, org.apache.hadoop.fs.FileSystem fs)
           
 

Uses of AbstractMobiusMapper in org.apache.hadoop.mapred.lib
 

Methods in org.apache.hadoop.mapred.lib that return types with arguments of type AbstractMobiusMapper
 java.lang.Class<AbstractMobiusMapper> MobiusDelegatingInputFormat.getMapper(org.apache.hadoop.mapred.InputSplit split, org.apache.hadoop.mapred.JobConf conf)