Uses of Interface
org.jgrapht.nio.Attribute
| Package | Description |
|---|---|
| org.jgrapht.nio |
Importers/Exporters for various graph formats.
|
| org.jgrapht.nio.dot |
DOT importers/exporters
|
| org.jgrapht.nio.json |
Json importers/exporters
|
-
Uses of Attribute in org.jgrapht.nio
Classes in org.jgrapht.nio that implement Attribute Modifier and Type Class Description classDefaultAttribute<T>Default implementation of an attribute.Fields in org.jgrapht.nio declared as Attribute Modifier and Type Field Description static AttributeDefaultAttribute. NULLThe null attribute.Fields in org.jgrapht.nio with type parameters of type Attribute Modifier and Type Field Description protected java.util.Optional<java.util.function.Function<E,java.util.Map<java.lang.String,Attribute>>>BaseExporter. edgeAttributeProviderAn edge attribute providerprotected java.util.Optional<java.util.function.Supplier<java.util.Map<java.lang.String,Attribute>>>BaseExporter. graphAttributeProviderA graph attribute providerprotected java.util.Optional<java.util.function.Function<V,java.util.Map<java.lang.String,Attribute>>>BaseExporter. vertexAttributeProviderA vertex attribute providerMethods in org.jgrapht.nio that return Attribute Modifier and Type Method Description static AttributeDefaultAttribute. createAttribute(java.lang.Boolean value)Create a boolean attributestatic AttributeDefaultAttribute. createAttribute(java.lang.Double value)Create a double attributestatic AttributeDefaultAttribute. createAttribute(java.lang.Float value)Create a float attributestatic AttributeDefaultAttribute. createAttribute(java.lang.Integer value)Create an integer attributestatic AttributeDefaultAttribute. createAttribute(java.lang.Long value)Create a long attributestatic AttributeDefaultAttribute. createAttribute(java.lang.String value)Create a string attributeMethods in org.jgrapht.nio that return types with arguments of type Attribute Modifier and Type Method Description protected java.util.Optional<Attribute>BaseExporter. getEdgeAttribute(E e, java.lang.String key)Get an optional of an edge attributejava.util.Optional<java.util.function.Function<E,java.util.Map<java.lang.String,Attribute>>>BaseExporter. getEdgeAttributeProvider()Get the edge attribute providerprotected java.util.Optional<java.util.Map<java.lang.String,Attribute>>BaseExporter. getEdgeAttributes(E e)Get edge attributesprotected java.util.Optional<Attribute>BaseExporter. getGraphAttribute(java.lang.String key)Get an optional of a graph attributejava.util.Optional<java.util.function.Supplier<java.util.Map<java.lang.String,Attribute>>>BaseExporter. getGraphAttributeProvider()Get the graph attribute provider.protected java.util.Optional<Attribute>BaseExporter. getVertexAttribute(V v, java.lang.String key)Get an optional of a vertex attributejava.util.Optional<java.util.function.Function<V,java.util.Map<java.lang.String,Attribute>>>BaseExporter. getVertexAttributeProvider()Get the vertex attribute providerprotected java.util.Optional<java.util.Map<java.lang.String,Attribute>>BaseExporter. getVertexAttributes(V v)Get vertex attributesMethods in org.jgrapht.nio with parameters of type Attribute Modifier and Type Method Description protected voidBaseEventDrivenImporter. notifyEdgeAttribute(E e, java.lang.String key, Attribute value)Notify for an edge attributeprotected voidBaseEventDrivenImporter. notifyGraphAttribute(java.lang.String key, Attribute value)Notify for a graph attributeprotected voidBaseEventDrivenImporter. notifyVertexAttribute(V v, java.lang.String key, Attribute value)Notify for a vertex attributeMethod parameters in org.jgrapht.nio with type arguments of type Attribute Modifier and Type Method Description voidBaseEventDrivenImporter. addEdgeAttributeConsumer(java.util.function.BiConsumer<Pair<E,java.lang.String>,Attribute> consumer)Add an edge attribute consumer.voidEventDrivenImporter. addEdgeAttributeConsumer(java.util.function.BiConsumer<Pair<E,java.lang.String>,Attribute> consumer)Add an edge attribute consumer.voidBaseEventDrivenImporter. addEdgeWithAttributesConsumer(java.util.function.BiConsumer<E,java.util.Map<java.lang.String,Attribute>> consumer)Add an edge with attributes consumer.voidEventDrivenImporter. addEdgeWithAttributesConsumer(java.util.function.BiConsumer<E,java.util.Map<java.lang.String,Attribute>> consumer)Add an edge with attributes consumer.voidBaseEventDrivenImporter. addGraphAttributeConsumer(java.util.function.BiConsumer<java.lang.String,Attribute> consumer)Add a graph attribute consumer.voidEventDrivenImporter. addGraphAttributeConsumer(java.util.function.BiConsumer<java.lang.String,Attribute> consumer)Add a graph attribute consumer.voidBaseEventDrivenImporter. addVertexAttributeConsumer(java.util.function.BiConsumer<Pair<V,java.lang.String>,Attribute> consumer)Add a vertex attribute consumer.voidEventDrivenImporter. addVertexAttributeConsumer(java.util.function.BiConsumer<Pair<V,java.lang.String>,Attribute> consumer)Add a vertex attribute consumer.voidBaseEventDrivenImporter. addVertexWithAttributesConsumer(java.util.function.BiConsumer<V,java.util.Map<java.lang.String,Attribute>> consumer)Add a vertex with attributes consumer.voidEventDrivenImporter. addVertexWithAttributesConsumer(java.util.function.BiConsumer<V,java.util.Map<java.lang.String,Attribute>> consumer)Add a vertex with attributes consumer.protected voidBaseEventDrivenImporter. notifyEdgeWithAttributes(E e, java.util.Map<java.lang.String,Attribute> attrs)Notify for an edge with attributes.protected voidBaseEventDrivenImporter. notifyVertexWithAttributes(V v, java.util.Map<java.lang.String,Attribute> attrs)Notify for a vertex with attributes.voidBaseEventDrivenImporter. removeEdgeAttributeConsumer(java.util.function.BiConsumer<Pair<E,java.lang.String>,Attribute> consumer)Remove an edge attribute consumer.voidEventDrivenImporter. removeEdgeAttributeConsumer(java.util.function.BiConsumer<Pair<E,java.lang.String>,Attribute> consumer)Remove an edge attribute consumer.voidBaseEventDrivenImporter. removeEdgeWithAttributesConsumer(java.util.function.BiConsumer<E,java.util.Map<java.lang.String,Attribute>> consumer)Remove an edge with attributes consumervoidEventDrivenImporter. removeEdgeWithAttributesConsumer(java.util.function.BiConsumer<E,java.util.Map<java.lang.String,Attribute>> consumer)Remove an edge with attributes consumervoidBaseEventDrivenImporter. removeGraphAttributeConsumer(java.util.function.BiConsumer<java.lang.String,Attribute> consumer)Remove a graph attribute consumer.voidEventDrivenImporter. removeGraphAttributeConsumer(java.util.function.BiConsumer<java.lang.String,Attribute> consumer)Remove a graph attribute consumer.voidBaseEventDrivenImporter. removeVertexAttributeConsumer(java.util.function.BiConsumer<Pair<V,java.lang.String>,Attribute> consumer)Remove a vertex attribute consumer.voidEventDrivenImporter. removeVertexAttributeConsumer(java.util.function.BiConsumer<Pair<V,java.lang.String>,Attribute> consumer)Remove a vertex attribute consumer.voidBaseEventDrivenImporter. removeVertexWithAttributesConsumer(java.util.function.BiConsumer<V,java.util.Map<java.lang.String,Attribute>> consumer)Remove a vertex with attributes consumervoidEventDrivenImporter. removeVertexWithAttributesConsumer(java.util.function.BiConsumer<V,java.util.Map<java.lang.String,Attribute>> consumer)Remove a vertex with attributes consumervoidBaseExporter. setEdgeAttributeProvider(java.util.function.Function<E,java.util.Map<java.lang.String,Attribute>> edgeAttributeProvider)Set the edge attribute provider.voidBaseExporter. setGraphAttributeProvider(java.util.function.Supplier<java.util.Map<java.lang.String,Attribute>> graphAttributeProvider)Set the graph attribute provider.voidBaseExporter. setVertexAttributeProvider(java.util.function.Function<V,java.util.Map<java.lang.String,Attribute>> vertexAttributeProvider)Set 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 Attribute Modifier and Type Method Description java.util.function.Function<java.util.Map<java.lang.String,Attribute>,E>DOTImporter. getEdgeWithAttributesFactory()Get the user custom edges factory with attributes.java.util.function.BiFunction<java.lang.String,java.util.Map<java.lang.String,Attribute>,V>DOTImporter. getVertexWithAttributesFactory()Get the user custom vertex factory with attributes.Method parameters in org.jgrapht.nio.dot with type arguments of type Attribute Modifier and Type Method Description voidDOTImporter. setEdgeWithAttributesFactory(java.util.function.Function<java.util.Map<java.lang.String,Attribute>,E> edgeWithAttributesFactory)Set the user custom edge factory with attributes.voidDOTImporter. setVertexWithAttributesFactory(java.util.function.BiFunction<java.lang.String,java.util.Map<java.lang.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 Attribute Modifier and Type Method Description java.util.function.Function<java.util.Map<java.lang.String,Attribute>,E>JSONImporter. getEdgeWithAttributesFactory()Get the user custom edges factory with attributes.Method parameters in org.jgrapht.nio.json with type arguments of type Attribute Modifier and Type Method Description voidJSONImporter. setEdgeWithAttributesFactory(java.util.function.Function<java.util.Map<java.lang.String,Attribute>,E> edgeWithAttributesFactory)Set the user custom edge factory with attributes.voidJSONImporter. setVertexWithAttributesFactory(java.util.function.BiFunction<java.lang.String,java.util.Map<java.lang.String,Attribute>,V> vertexWithAttributesFactory)Set the user custom vertex factory with attributes.