public class MultiGraph extends AdjacencyListGraph
AbstractElement.AttributeChangeEvent
Replayable.Controller
DEFAULT_EDGE_CAPACITY, DEFAULT_NODE_CAPACITY, GROW_FACTOR
Constructor and Description |
---|
MultiGraph(java.lang.String id)
Creates an empty graph with strict checking and without auto-creation.
|
MultiGraph(java.lang.String id,
boolean strictChecking,
boolean autoCreate)
Creates an empty graph with default edge and node capacity.
|
MultiGraph(java.lang.String id,
boolean strictChecking,
boolean autoCreate,
int initialNodeCapacity,
int initialEdgeCapacity)
Creates an empty graph.
|
edges, getEdge, getEdge, getEdgeCount, getNode, getNode, getNodeCount, nodes
addAttributeSink, addEdge, addElementSink, addNode, addSink, attributeSinks, clear, clearAttributeSinks, clearElementSinks, clearSinks, display, display, edgeAdded, edgeAttributeAdded, edgeAttributeChanged, edgeAttributeRemoved, edgeFactory, edgeRemoved, elementSinks, getReplayController, getStep, graphAttributeAdded, graphAttributeChanged, graphAttributeRemoved, graphCleared, isAutoCreationEnabled, isStrict, iterator, nodeAdded, nodeAttributeAdded, nodeAttributeChanged, nodeAttributeRemoved, nodeFactory, nodeRemoved, removeAttributeSink, removeEdge, removeEdge, removeElementSink, removeNode, removeSink, setAutoCreate, setEdgeFactory, setNodeFactory, setStrict, stepBegins, stepBegins
attributeKeys, clearAttributes, getAttribute, getAttribute, getAttributeCount, getFirstAttributeOf, getFirstAttributeOf, getId, getIndex, hasAttribute, hasAttribute, removeAttribute, setAttribute, toString
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
addEdge, addEdge, addEdge, addEdge, addEdge, read, read, removeEdge, removeEdge, removeEdge, removeEdge, removeNode, removeNode, write, write
attributeKeys, clearAttributes, getArray, getAttribute, getAttribute, getAttributeCount, getFirstAttributeOf, getFirstAttributeOf, getId, getIndex, getLabel, getMap, getNumber, getVector, hasArray, hasAttribute, hasAttribute, hasLabel, hasMap, hasNumber, hasVector, removeAttribute, setAttribute, setAttributes
replay, tryReplay
public MultiGraph(java.lang.String id, boolean strictChecking, boolean autoCreate, int initialNodeCapacity, int initialEdgeCapacity)
id
- Unique identifier of the graph.strictChecking
- If true any non-fatal error throws an exception.autoCreate
- If true (and strict checking is false), nodes are automatically
created when referenced when creating a edge, even if not yet
inserted in the graph.initialNodeCapacity
- Initial capacity of the node storage data structures. Use this if
you know the approximate maximum number of nodes of the graph. The
graph can grow beyond this limit, but storage reallocation is
expensive operation.initialEdgeCapacity
- Initial capacity of the edge storage data structures. Use this if
you know the approximate maximum number of edges of the graph. The
graph can grow beyond this limit, but storage reallocation is
expensive operation.public MultiGraph(java.lang.String id, boolean strictChecking, boolean autoCreate)
id
- Unique identifier of the graph.strictChecking
- If true any non-fatal error throws an exception.autoCreate
- If true (and strict checking is false), nodes are automatically
created when referenced when creating a edge, even if not yet
inserted in the graph.public MultiGraph(java.lang.String id)
id
- Unique identifier of the graph.