Uses of Interface
edu.uci.ics.jung.algorithms.util.SettableTransformer
Packages that use SettableTransformer
Package
Description
Provides general algorithmic utilities.
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 SettableTransformerModifier and TypeClassDescriptionclass
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 SettableTransformerModifier and TypeFieldDescriptionprotected SettableTransformer
<E, Number> PajekNetReader.edge_weights
protected SettableTransformer
<V, String> PajekNetReader.vertex_labels
The map for vertex labels (if any) created by this class.protected SettableTransformer
<V, Point2D> PajekNetReader.vertex_locations
The map for vertex locations (if any) defined by this class.Methods in edu.uci.ics.jung.io that return SettableTransformerModifier and TypeMethodDescriptionPajekNetReader.getEdgeWeightTransformer()
PajekNetReader.getVertexLabeller()
PajekNetReader.getVertexLocationTransformer()
Methods in edu.uci.ics.jung.io with parameters of type SettableTransformerModifier and TypeMethodDescriptionvoid
PajekNetReader.setEdgeWeightTransformer
(SettableTransformer<E, Number> edge_weights) Provides a Function which will be used to write out edge weights.void
PajekNetReader.setVertexLabeller
(SettableTransformer<V, String> vertex_labels) Provides a Function which will be used to write out the vertex labels.void
PajekNetReader.setVertexLocationTransformer
(SettableTransformer<V, Point2D> vertex_locations) Provides a Function which will be used to write out the vertex locations.