Uses of Interface
org.jgrapht.nio.Attribute
Packages that use Attribute
Package
Description
Importers/Exporters for various graph formats.
DOT importers/exporters
Json importers/exporters
-
Uses of Attribute in org.jgrapht.nio
Classes in org.jgrapht.nio that implement AttributeModifier and TypeClassDescriptionclassDefault implementation of an attribute.Fields in org.jgrapht.nio declared as AttributeModifier and TypeFieldDescriptionstatic final AttributeDefaultAttribute.NULLThe null attribute.Fields in org.jgrapht.nio with type parameters of type AttributeModifier and TypeFieldDescriptionBaseExporter.edgeAttributeProviderAn edge attribute providerBaseExporter.graphAttributeProviderA graph attribute providerBaseExporter.vertexAttributeProviderA vertex attribute providerMethods in org.jgrapht.nio that return AttributeModifier and TypeMethodDescriptionstatic AttributeDefaultAttribute.createAttribute(Boolean value) Create a boolean attributestatic AttributeDefaultAttribute.createAttribute(Double value) Create a double attributestatic AttributeDefaultAttribute.createAttribute(Float value) Create a float attributestatic AttributeDefaultAttribute.createAttribute(Integer value) Create an integer attributestatic AttributeDefaultAttribute.createAttribute(Long value) Create a long attributestatic AttributeDefaultAttribute.createAttribute(String value) Create a string attributeMethods in org.jgrapht.nio that return types with arguments of type AttributeModifier and TypeMethodDescriptionBaseExporter.getEdgeAttribute(E e, String key) Get an optional of an edge attributeBaseExporter.getEdgeAttributeProvider()Get the edge attribute providerBaseExporter.getEdgeAttributes(E e) Get edge attributesBaseExporter.getGraphAttribute(String key) Get an optional of a graph attributeBaseExporter.getGraphAttributeProvider()Get the graph attribute provider.BaseExporter.getVertexAttribute(V v, String key) Get an optional of a vertex attributeBaseExporter.getVertexAttributeProvider()Get the vertex attribute providerBaseExporter.getVertexAttributes(V v) Get vertex attributesMethods in org.jgrapht.nio with parameters of type AttributeModifier and TypeMethodDescriptionprotected voidBaseEventDrivenImporter.notifyEdgeAttribute(E e, String key, Attribute value) Notify for an edge attributeprotected voidBaseEventDrivenImporter.notifyGraphAttribute(String key, Attribute value) Notify for a graph attributeprotected voidBaseEventDrivenImporter.notifyVertexAttribute(V v, String key, Attribute value) Notify for a vertex attributeMethod parameters in org.jgrapht.nio with type arguments of type AttributeModifier and TypeMethodDescriptionvoidBaseEventDrivenImporter.addEdgeAttributeConsumer(BiConsumer<Pair<E, String>, Attribute> consumer) Add an edge attribute consumer.voidEventDrivenImporter.addEdgeAttributeConsumer(BiConsumer<Pair<E, String>, Attribute> consumer) Add an edge attribute consumer.voidBaseEventDrivenImporter.addEdgeWithAttributesConsumer(BiConsumer<E, Map<String, Attribute>> consumer) Add an edge with attributes consumer.voidEventDrivenImporter.addEdgeWithAttributesConsumer(BiConsumer<E, Map<String, Attribute>> consumer) Add an edge with attributes consumer.voidBaseEventDrivenImporter.addGraphAttributeConsumer(BiConsumer<String, Attribute> consumer) Add a graph attribute consumer.voidEventDrivenImporter.addGraphAttributeConsumer(BiConsumer<String, Attribute> consumer) Add a graph attribute consumer.voidBaseEventDrivenImporter.addVertexAttributeConsumer(BiConsumer<Pair<V, String>, Attribute> consumer) Add a vertex attribute consumer.voidEventDrivenImporter.addVertexAttributeConsumer(BiConsumer<Pair<V, String>, Attribute> consumer) Add a vertex attribute consumer.voidBaseEventDrivenImporter.addVertexWithAttributesConsumer(BiConsumer<V, Map<String, Attribute>> consumer) Add a vertex with attributes consumer.voidEventDrivenImporter.addVertexWithAttributesConsumer(BiConsumer<V, Map<String, Attribute>> consumer) Add a vertex with attributes consumer.protected voidBaseEventDrivenImporter.notifyEdgeWithAttributes(E e, Map<String, Attribute> attrs) Notify for an edge with attributes.protected voidBaseEventDrivenImporter.notifyVertexWithAttributes(V v, Map<String, Attribute> attrs) Notify for a vertex with attributes.voidBaseEventDrivenImporter.removeEdgeAttributeConsumer(BiConsumer<Pair<E, String>, Attribute> consumer) Remove an edge attribute consumer.voidEventDrivenImporter.removeEdgeAttributeConsumer(BiConsumer<Pair<E, String>, Attribute> consumer) Remove an edge attribute consumer.voidBaseEventDrivenImporter.removeEdgeWithAttributesConsumer(BiConsumer<E, Map<String, Attribute>> consumer) Remove an edge with attributes consumervoidEventDrivenImporter.removeEdgeWithAttributesConsumer(BiConsumer<E, Map<String, Attribute>> consumer) Remove an edge with attributes consumervoidBaseEventDrivenImporter.removeGraphAttributeConsumer(BiConsumer<String, Attribute> consumer) Remove a graph attribute consumer.voidEventDrivenImporter.removeGraphAttributeConsumer(BiConsumer<String, Attribute> consumer) Remove a graph attribute consumer.voidBaseEventDrivenImporter.removeVertexAttributeConsumer(BiConsumer<Pair<V, String>, Attribute> consumer) Remove a vertex attribute consumer.voidEventDrivenImporter.removeVertexAttributeConsumer(BiConsumer<Pair<V, String>, Attribute> consumer) Remove a vertex attribute consumer.voidBaseEventDrivenImporter.removeVertexWithAttributesConsumer(BiConsumer<V, Map<String, Attribute>> consumer) Remove a vertex with attributes consumervoidEventDrivenImporter.removeVertexWithAttributesConsumer(BiConsumer<V, Map<String, Attribute>> consumer) Remove a vertex with attributes consumervoidSet the edge attribute provider.voidBaseExporter.setGraphAttributeProvider(Supplier<Map<String, Attribute>> graphAttributeProvider) Set the graph attribute provider.voidSet the vertex attribute provider -
Uses of Attribute in org.jgrapht.nio.dot
Methods in org.jgrapht.nio.dot that return types with arguments of type AttributeModifier and TypeMethodDescriptionDOTImporter.getEdgeWithAttributesFactory()Get the user custom edges factory with attributes.DOTImporter.getVertexWithAttributesFactory()Get the user custom vertex factory with attributes.Method parameters in org.jgrapht.nio.dot with type arguments of type AttributeModifier and TypeMethodDescriptionvoidDOTImporter.setEdgeWithAttributesFactory(Function<Map<String, Attribute>, E> edgeWithAttributesFactory) Set the user custom edge factory with attributes.voidDOTImporter.setVertexWithAttributesFactory(BiFunction<String, Map<String, Attribute>, V> vertexWithAttributesFactory) Set the user custom vertex factory with attributes. -
Uses of Attribute in org.jgrapht.nio.json
Methods in org.jgrapht.nio.json that return types with arguments of type AttributeModifier and TypeMethodDescriptionJSONImporter.getEdgeWithAttributesFactory()Get the user custom edges factory with attributes.Method parameters in org.jgrapht.nio.json with type arguments of type AttributeModifier and TypeMethodDescriptionvoidJSONImporter.setEdgeWithAttributesFactory(Function<Map<String, Attribute>, E> edgeWithAttributesFactory) Set the user custom edge factory with attributes.voidJSONImporter.setVertexWithAttributesFactory(BiFunction<String, Map<String, Attribute>, V> vertexWithAttributesFactory) Set the user custom vertex factory with attributes.