Uses of Interface
org.jgrapht.io.Attribute
-
Packages that use Attribute Package Description org.jgrapht.io Importers/Exporters for various graph formats. -
-
Uses of Attribute in org.jgrapht.io
Classes in org.jgrapht.io that implement Attribute Modifier and Type Class Description class
DefaultAttribute<T>
Deprecated.In favor of nio package.Fields in org.jgrapht.io declared as Attribute Modifier and Type Field Description static Attribute
DefaultAttribute. NULL
Deprecated.The null attribute.Methods in org.jgrapht.io that return Attribute Modifier and Type Method Description static Attribute
DefaultAttribute. createAttribute(Boolean value)
Deprecated.Create a boolean attributestatic Attribute
DefaultAttribute. createAttribute(Double value)
Deprecated.Create a double attributestatic Attribute
DefaultAttribute. createAttribute(Float value)
Deprecated.Create a float attributestatic Attribute
DefaultAttribute. createAttribute(Integer value)
Deprecated.Create an integer attributestatic Attribute
DefaultAttribute. createAttribute(Long value)
Deprecated.Create a long attributestatic Attribute
DefaultAttribute. createAttribute(String value)
Deprecated.Create a string attributeMethods in org.jgrapht.io that return types with arguments of type Attribute Modifier and Type Method Description Map<String,Attribute>
ComponentAttributeProvider. getComponentAttributes(T component)
Deprecated.Returns a set of attribute key/value pairs for a vertex or edge.Map<String,Attribute>
EmptyComponentAttributeProvider. getComponentAttributes(T component)
Deprecated.Method parameters in org.jgrapht.io with type arguments of type Attribute Modifier and Type Method Description E
EdgeProvider. buildEdge(V from, V to, String label, Map<String,Attribute> attributes)
Deprecated.Construct an edge.V
VertexProvider. buildVertex(String id, Map<String,Attribute> attributes)
Deprecated.Create a vertexvoid
ComponentUpdater. update(T component, Map<String,Attribute> attributes)
Deprecated.Update component with the extra attributes.
-