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 class
MapSettableTransformer<I,O>
ASettableTransformer
that operates on an underlyingMap
instance. -
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_weights
protected SettableTransformer<V,java.lang.String>
PajekNetReader. vertex_labels
The map for vertex labels (if any) created by this class.protected SettableTransformer<V,java.awt.geom.Point2D>
PajekNetReader. vertex_locations
The 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 void
PajekNetReader. setEdgeWeightTransformer(SettableTransformer<E,java.lang.Number> edge_weights)
Provides a Function which will be used to write out edge weights.void
PajekNetReader. setVertexLabeller(SettableTransformer<V,java.lang.String> vertex_labels)
Provides a Function which will be used to write out the vertex labels.void
PajekNetReader. setVertexLocationTransformer(SettableTransformer<V,java.awt.geom.Point2D> vertex_locations)
Provides a Function which will be used to write out the vertex locations.
-