Uses of Interface
com.intel.hadoop.graphbuilder.preprocess.functional.Functional

Packages that use Functional
com.intel.hadoop.graphbuilder.demoapps.wikipedia.docwordgraph   
com.intel.hadoop.graphbuilder.demoapps.wikipedia.linkgraph   
com.intel.hadoop.graphbuilder.job   
com.intel.hadoop.graphbuilder.preprocess.functional   
com.intel.hadoop.graphbuilder.test.job   
 

Uses of Functional in com.intel.hadoop.graphbuilder.demoapps.wikipedia.docwordgraph
 

Classes in com.intel.hadoop.graphbuilder.demoapps.wikipedia.docwordgraph that implement Functional
static class TransformToTFIDF.Dividefunc
          f : x * y -> x / y
static class TransformToTFIDF.FloatCountFunc
          f : x * y -> y + 1
static class TransformToTFIDF.IDFfunc
          f : tf * df -> tfidf
static class TransformToTFIDF.Sumfunc
          f : x * y -> x + y
 

Methods in com.intel.hadoop.graphbuilder.demoapps.wikipedia.docwordgraph that return Functional
 Functional CreateWordCountGraph.Job.edgeReducer()
           
 Functional CreateWordCountGraph.Job.vertexReducer()
           
 

Uses of Functional in com.intel.hadoop.graphbuilder.demoapps.wikipedia.linkgraph
 

Methods in com.intel.hadoop.graphbuilder.demoapps.wikipedia.linkgraph that return Functional
 Functional CreateLinkGraph.Job.edgeReducer()
           
 Functional CreateLinkGraph.Job.vertexReducer()
           
 

Uses of Functional in com.intel.hadoop.graphbuilder.job
 

Methods in com.intel.hadoop.graphbuilder.job that return Functional
abstract  Functional<EdgeData,TransformedEdata> AbstractEdgeTransformJob.applyFunction()
           
abstract  Functional<EdgeData,EdgeData> AbstractPreprocessJob.edgeReducer()
           
abstract  Functional<EdgeData,TransformedEdata> AbstractEdgeTransformJob.reduceFunction()
           
abstract  Functional<VertexData,VertexData> AbstractPreprocessJob.vertexReducer()
           
 

Uses of Functional in com.intel.hadoop.graphbuilder.preprocess.functional
 

Classes in com.intel.hadoop.graphbuilder.preprocess.functional that implement Functional
 class CountFunc<T>
          Represents a counting functional: f x y -> y + 1
 

Uses of Functional in com.intel.hadoop.graphbuilder.test.job
 

Classes in com.intel.hadoop.graphbuilder.test.job that implement Functional
static class EdgeTransformJobTest.Divide
           
static class EdgeTransformJobTest.Sum
           
 

Methods in com.intel.hadoop.graphbuilder.test.job that return Functional
 Functional PreprocessJobTest.Job.edgeReducer()
           
 Functional PreprocessJobTest.Job.vertexReducer()