Uses of Interface
org.jgrapht.io.ComponentAttributeProvider
-
Packages that use ComponentAttributeProvider Package Description org.jgrapht.io Importers/Exporters for various graph formats. -
-
Uses of ComponentAttributeProvider in org.jgrapht.io
Classes in org.jgrapht.io that implement ComponentAttributeProvider Modifier and Type Class Description class
EmptyComponentAttributeProvider<T>
Deprecated.In favor of using lambdas.Methods in org.jgrapht.io that return ComponentAttributeProvider Modifier and Type Method Description ComponentAttributeProvider<E>
GraphMLExporter. getEdgeAttributeProvider()
Deprecated.Get the edge attribute providerComponentAttributeProvider<V>
GraphMLExporter. getVertexAttributeProvider()
Deprecated.Get the vertex attribute providerMethods in org.jgrapht.io with parameters of type ComponentAttributeProvider Modifier and Type Method Description void
GraphMLExporter. setEdgeAttributeProvider(ComponentAttributeProvider<E> edgeAttributeProvider)
Deprecated.Set the edge attribute provider.void
GraphMLExporter. setVertexAttributeProvider(ComponentAttributeProvider<V> vertexAttributeProvider)
Deprecated.Set the vertex attribute provider.Constructors in org.jgrapht.io with parameters of type ComponentAttributeProvider Constructor Description DOTExporter(ComponentNameProvider<V> vertexIDProvider, ComponentNameProvider<V> vertexLabelProvider, ComponentNameProvider<E> edgeLabelProvider, ComponentAttributeProvider<V> vertexAttributeProvider, ComponentAttributeProvider<E> edgeAttributeProvider)
Deprecated.Constructs a new DOTExporter object with the given ID, label, and attribute providers.DOTExporter(ComponentNameProvider<V> vertexIDProvider, ComponentNameProvider<V> vertexLabelProvider, ComponentNameProvider<E> edgeLabelProvider, ComponentAttributeProvider<V> vertexAttributeProvider, ComponentAttributeProvider<E> edgeAttributeProvider, ComponentNameProvider<Graph<V,E>> graphIDProvider)
Deprecated.Constructs a new DOTExporter object with the given ID, label, attribute, and graph id providers.GraphMLExporter(ComponentNameProvider<V> vertexIDProvider, ComponentNameProvider<V> vertexLabelProvider, ComponentAttributeProvider<V> vertexAttributeProvider, ComponentNameProvider<E> edgeIDProvider, ComponentNameProvider<E> edgeLabelProvider, ComponentAttributeProvider<E> edgeAttributeProvider)
Deprecated.Constructs a new GraphMLExporter.JSONExporter(ComponentNameProvider<V> vertexIDProvider, ComponentAttributeProvider<V> vertexAttributeProvider, ComponentNameProvider<E> edgeIDProvider, ComponentAttributeProvider<E> edgeAttributeProvider)
Deprecated.Constructs a new exporter
-