Class VertexScoreTransformer<V,S>
java.lang.Object
edu.uci.ics.jung.algorithms.scoring.util.VertexScoreTransformer<V,S>
- All Implemented Interfaces:
com.google.common.base.Function<V,S>, Function<V, S>
public class VertexScoreTransformer<V,S>
extends Object
implements com.google.common.base.Function<V,S>
A Function convenience wrapper around VertexScorer.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected VertexScorer<V, S> The VertexScorer instance that provides the values returned bytransform. -
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance based on the specified VertexScorer. -
Method Summary
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.google.common.base.Function
equals
-
Field Details
-
vs
The VertexScorer instance that provides the values returned bytransform.
-
-
Constructor Details
-
VertexScoreTransformer
Creates an instance based on the specified VertexScorer.- Parameters:
vs- the VertexScorer which will retrieve the score for each vertex
-
-
Method Details
-
apply
-