Uses of Interface
edu.uci.ics.jung.algorithms.util.SettableTransformer
-
Packages that use SettableTransformer Package Description edu.uci.ics.jung.algorithms.util Provides general algorithmic utilities.edu.uci.ics.jung.io Interfaces and classes for reading and writing graphs in various (file) formats. -
-
Uses of SettableTransformer in edu.uci.ics.jung.algorithms.util
Classes in edu.uci.ics.jung.algorithms.util that implement SettableTransformer Modifier and Type Class Description classMapSettableTransformer<I,O>ASettableTransformerthat operates on an underlyingMapinstance. -
Uses of SettableTransformer in edu.uci.ics.jung.io
Fields in edu.uci.ics.jung.io declared as SettableTransformer Modifier and Type Field Description protected SettableTransformer<E,java.lang.Number>PajekNetReader. edge_weightsprotected SettableTransformer<V,java.lang.String>PajekNetReader. vertex_labelsThe map for vertex labels (if any) created by this class.protected SettableTransformer<V,java.awt.geom.Point2D>PajekNetReader. vertex_locationsThe map for vertex locations (if any) defined by this class.Methods in edu.uci.ics.jung.io that return SettableTransformer Modifier and Type Method Description SettableTransformer<E,java.lang.Number>PajekNetReader. getEdgeWeightTransformer()SettableTransformer<V,java.lang.String>PajekNetReader. getVertexLabeller()SettableTransformer<V,java.awt.geom.Point2D>PajekNetReader. getVertexLocationTransformer()Methods in edu.uci.ics.jung.io with parameters of type SettableTransformer Modifier and Type Method Description voidPajekNetReader. setEdgeWeightTransformer(SettableTransformer<E,java.lang.Number> edge_weights)Provides a Function which will be used to write out edge weights.voidPajekNetReader. setVertexLabeller(SettableTransformer<V,java.lang.String> vertex_labels)Provides a Function which will be used to write out the vertex labels.voidPajekNetReader. setVertexLocationTransformer(SettableTransformer<V,java.awt.geom.Point2D> vertex_locations)Provides a Function which will be used to write out the vertex locations.
-