Uses of Class
com.ebay.erl.mobius.core.JoinOnConfigure

Packages that use JoinOnConfigure
com.ebay.erl.mobius.core Contains the main class MobiusJob of the Mobius core API; refer to MobiusJob to see how to create an analysis flow using Mobius. 
 

Uses of JoinOnConfigure in com.ebay.erl.mobius.core
 

Methods in com.ebay.erl.mobius.core that return JoinOnConfigure
 JoinOnConfigure MobiusJob.innerJoin(Dataset... datasets)
          Perform inner join on the given datasets.
 JoinOnConfigure MobiusJob.leftOuterJoin(Dataset left, Dataset right)
          Performing "Left Outer Join", the result contains all the records of the left Dataset (the 1st Dataset) with or without match to the right Dataset.
 JoinOnConfigure MobiusJob.leftOuterJoin(Dataset left, Dataset right, java.lang.Object nullReplacement)
          Performing "Left Outer Join", the result contains all the records of the left Dataset (the 1st Dataset) with or without match to the right Dataset.
 JoinOnConfigure MobiusJob.rightOuterJoin(Dataset left, Dataset right)
          Performing "Right Outer Join", the result contains all the records of the right Dataset (the 2nd argument) with or without match to the left Dataset.
 JoinOnConfigure MobiusJob.rightOuterJoin(Dataset left, Dataset right, java.lang.Object nullReplacement)
          Performing "Right Outer Join", the result contains all the records of the right Dataset (the 2nd argument) with or without match to the left Dataset.