Package org.jgrapht.ext
Class StringNameProvider<V>
java.lang.Object
org.jgrapht.ext.StringNameProvider<V>
- All Implemented Interfaces:
VertexNameProvider<V>
Generates vertex names by invoking
Object.toString() on them. This assumes
that the vertex's Object.toString() method returns a unique String
representation for each vertex.- Author:
- Charles Fry
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetVertexName(V vertex) Returns the String representation of the unique integer representing a vertex.
-
Constructor Details
-
StringNameProvider
public StringNameProvider()
-
-
Method Details
-
getVertexName
Returns the String representation of the unique integer representing a vertex.- Specified by:
getVertexNamein interfaceVertexNameProvider<V>- Parameters:
vertex- the vertex to be named- Returns:
- the name of
- See Also:
-