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 TypeClassDescriptionclassASettableTransformerthat operates on an underlyingMapinstance. -
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_weightsprotected SettableTransformer<V, String> PajekNetReader.vertex_labelsThe map for vertex labels (if any) created by this class.protected SettableTransformer<V, Point2D> PajekNetReader.vertex_locationsThe 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 TypeMethodDescriptionvoidPajekNetReader.setEdgeWeightTransformer(SettableTransformer<E, Number> edge_weights) Provides a Function which will be used to write out edge weights.voidPajekNetReader.setVertexLabeller(SettableTransformer<V, String> vertex_labels) Provides a Function which will be used to write out the vertex labels.voidPajekNetReader.setVertexLocationTransformer(SettableTransformer<V, Point2D> vertex_locations) Provides a Function which will be used to write out the vertex locations.