SandboxHashSet<SandboxEdge> |
Sandbox.addEdges(com.ensoftcorp.atlas.core.db.set.AtlasSet<com.ensoftcorp.atlas.core.db.graph.Edge> edges) |
Adds the current state of the given edges in the Atlas graph to the sandbox
|
SandboxHashSet<SandboxNode> |
Sandbox.addNodes(com.ensoftcorp.atlas.core.db.set.AtlasSet<com.ensoftcorp.atlas.core.db.graph.Node> nodes) |
Adds the current state of the given nodes in the Atlas graph to the sandbox
|
SandboxHashSet<SandboxEdge> |
Sandbox.edges(com.ensoftcorp.atlas.core.db.set.AtlasSet<com.ensoftcorp.atlas.core.db.graph.Edge> edges) |
Returns a sandbox set of edges contained in the sandbox universe
referenced in the given set of the Atlas graph edges
|
SandboxHashSet<SandboxEdge> |
SandboxGraph.edges() |
Returns the edges of this graph
|
SandboxHashSet<SandboxEdge> |
SandboxGraph.edges(SandboxNode node,
com.ensoftcorp.atlas.core.db.graph.GraphElement.NodeDirection direction) |
Gets the node's predecessor or successor edges in this graph
|
SandboxHashSet<SandboxEdge> |
SandboxGraph.edges(java.lang.String... tags) |
A convenience method for edges(String...
|
SandboxHashSet<SandboxEdge> |
SandboxGraph.edgesTaggedWithAll(java.lang.String... tags) |
Returns the set of edges from this graph that are tagged with all of the
given tags
|
SandboxHashSet<SandboxEdge> |
SandboxGraph.edgesTaggedWithAny(java.lang.String... tags) |
Returns the set of edges from this graph that are tagged with any of the
given tags
|
SandboxHashSet<SandboxEdge> |
Sandbox.emptyEdgeSet() |
Returns an empty sandbox edge set
|
SandboxHashSet<SandboxNode> |
Sandbox.emptyNodeSet() |
Returns an empty sandbox node set
|
SandboxHashSet<T> |
SandboxHashSet.filter(java.lang.String attr,
java.lang.Object value) |
|
SandboxHashSet<SandboxNode> |
SandboxGraph.leaves() |
Selects the nodes of this graph that have no successors
Convenience for limit(NodeDirection.OUT)
|
SandboxHashSet<SandboxNode> |
SandboxGraph.limit(com.ensoftcorp.atlas.core.db.graph.GraphElement.NodeDirection direction) |
Returns the nodes in the graph without edges from the given direction
|
SandboxHashSet<SandboxNode> |
Sandbox.nodes(com.ensoftcorp.atlas.core.db.set.AtlasSet<com.ensoftcorp.atlas.core.db.graph.Node> nodes) |
Returns a set of sandbox nodes contained in the sandbox universe
corresponding to the given set Atlas graph nodes.
|
SandboxHashSet<SandboxNode> |
SandboxGraph.nodes() |
Returns the nodes of this graph
|
SandboxHashSet<SandboxNode> |
SandboxGraph.nodes(java.lang.String... tags) |
A convenience method for nodes(String...
|
SandboxHashSet<SandboxNode> |
SandboxGraph.nodesTaggedWithAll(java.lang.String... tags) |
Returns the set of nodes from this graph that are tagged with any of the
given tags
|
SandboxHashSet<SandboxNode> |
SandboxGraph.nodesTaggedWithAny(java.lang.String... tags) |
Returns the set of nodes from this graph that are tagged with all of the
given tags
|
SandboxHashSet<SandboxNode> |
SandboxGraph.predecessors(SandboxNode node) |
Gets the predecessor nodes of the given node for this graph's edges
|
SandboxHashSet<SandboxNode> |
SandboxGraph.roots() |
Selects the nodes of this graph that have no predecessors
Convenience for limit(NodeDirection.IN)
|
SandboxHashSet<SandboxNode> |
SandboxGraph.successors(SandboxNode node) |
Gets the successor nodes of the given node for this graph's edges
|