| Package | Description |
|---|---|
| org.neolumin.vertexium | |
| org.neolumin.vertexium.event | |
| org.neolumin.vertexium.mutation | |
| org.neolumin.vertexium.query |
| Modifier and Type | Method and Description |
|---|---|
Edge |
GraphBase.addEdge(String edgeId,
String outVertexId,
String inVertexId,
String label,
Visibility visibility,
Authorizations authorizations) |
Edge |
Graph.addEdge(String edgeId,
String outVertexId,
String inVertexId,
String label,
Visibility visibility,
Authorizations authorizations)
Adds an edge between two vertices.
|
Edge |
GraphBase.addEdge(String outVertexId,
String inVertexId,
String label,
Visibility visibility,
Authorizations authorizations) |
Edge |
Graph.addEdge(String outVertexId,
String inVertexId,
String label,
Visibility visibility,
Authorizations authorizations)
Adds an edge between two vertices.
|
Edge |
GraphBase.addEdge(String edgeId,
Vertex outVertex,
Vertex inVertex,
String label,
Visibility visibility,
Authorizations authorizations) |
Edge |
Graph.addEdge(String edgeId,
Vertex outVertex,
Vertex inVertex,
String label,
Visibility visibility,
Authorizations authorizations)
Adds an edge between two vertices.
|
Edge |
GraphBase.addEdge(Vertex outVertex,
Vertex inVertex,
String label,
Visibility visibility,
Authorizations authorizations) |
Edge |
Graph.addEdge(Vertex outVertex,
Vertex inVertex,
String label,
Visibility visibility,
Authorizations authorizations)
Adds an edge between two vertices.
|
Edge |
GraphBase.getEdge(String edgeId,
Authorizations authorizations) |
Edge |
Graph.getEdge(String edgeId,
Authorizations authorizations)
Get an edge from the graph.
|
Edge |
GraphBase.getEdge(String edgeId,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Edge |
Graph.getEdge(String edgeId,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Get an edge from the graph.
|
abstract Edge |
EdgeBuilderBase.save(Authorizations authorizations)
Save the edge along with any properties that were set to the graph.
|
| Modifier and Type | Method and Description |
|---|---|
Iterable<Edge> |
GraphBase.getEdges(Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(Authorizations authorizations)
Gets all edges on the graph.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
Authorizations authorizations)
Gets all edges attached to this vertex.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges attached to this vertex.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
String[] labels,
Authorizations authorizations)
Gets all edges with any of the given labels attached to this vertex.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
String[] labels,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges with any of the given labels attached to this vertex.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
String label,
Authorizations authorizations)
Gets all edges with the given label attached to this vertex.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
String label,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges with the given label attached to this vertex.
|
abstract Iterable<Edge> |
GraphBase.getEdges(EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges on the graph.
|
Iterable<Edge> |
GraphBase.getEdges(Iterable<String> ids,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(Iterable<String> ids,
Authorizations authorizations)
Gets all edges on the graph matching the given ids.
|
Iterable<Edge> |
GraphBase.getEdges(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges on the graph matching the given ids.
|
Iterable<Edge> |
Vertex.getEdges(Vertex otherVertex,
Direction direction,
Authorizations authorizations)
Gets all edges between this vertex and another vertex.
|
Iterable<Edge> |
Vertex.getEdges(Vertex otherVertex,
Direction direction,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges between this vertex and another vertex.
|
Iterable<Edge> |
Vertex.getEdges(Vertex otherVertex,
Direction direction,
String[] labels,
Authorizations authorizations)
Gets all edges between this vertex and another vertex matching any of the given labels.
|
Iterable<Edge> |
Vertex.getEdges(Vertex otherVertex,
Direction direction,
String[] labels,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges between this vertex and another vertex matching any of the given labels.
|
Iterable<Edge> |
Vertex.getEdges(Vertex otherVertex,
Direction direction,
String label,
Authorizations authorizations)
Gets all edges between this vertex and another vertex matching the given label.
|
Iterable<Edge> |
Vertex.getEdges(Vertex otherVertex,
Direction direction,
String label,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges between this vertex and another vertex matching the given label.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Graph.markEdgeHidden(Edge edge,
Visibility visibility,
Authorizations authorizations)
Marks an edge as hidden for a given visibility.
|
void |
Graph.markEdgeVisible(Edge edge,
Visibility visibility,
Authorizations authorizations)
Marks an edge as visible for a given visibility, effectively undoing markEdgeHidden.
|
abstract void |
GraphBase.removeEdge(Edge edge,
Authorizations authorizations) |
void |
Graph.removeEdge(Edge edge,
Authorizations authorizations)
Removes an edge from the graph.
|
| Modifier and Type | Method and Description |
|---|---|
Edge |
MarkHiddenEdgeEvent.getEdge() |
Edge |
MarkVisibleEdgeEvent.getEdge() |
Edge |
RemoveEdgeEvent.getEdge() |
Edge |
AddEdgeEvent.getEdge() |
| Constructor and Description |
|---|
AddEdgeEvent(Graph graph,
Edge edge) |
MarkHiddenEdgeEvent(Graph graph,
Edge edge) |
MarkVisibleEdgeEvent(Graph graph,
Edge edge) |
RemoveEdgeEvent(Graph graph,
Edge edge) |
| Constructor and Description |
|---|
ExistingEdgeMutation(Edge edge) |
| Modifier and Type | Method and Description |
|---|---|
Iterable<Edge> |
Query.edges() |
Iterable<Edge> |
CompositeGraphQuery.edges() |
Iterable<Edge> |
QueryBase.edges() |
Iterable<Edge> |
VertexQuery.edges(Direction direction) |
Iterable<Edge> |
VertexQueryBase.edges(Direction direction) |
Iterable<Edge> |
VertexQuery.edges(Direction direction,
EnumSet<FetchHint> fetchHints) |
Iterable<Edge> |
VertexQueryBase.edges(Direction direction,
EnumSet<FetchHint> fetchHints) |
Iterable<Edge> |
VertexQuery.edges(Direction direction,
String label) |
Iterable<Edge> |
VertexQueryBase.edges(Direction direction,
String label) |
Iterable<Edge> |
VertexQuery.edges(Direction direction,
String label,
EnumSet<FetchHint> fetchHints) |
Iterable<Edge> |
VertexQueryBase.edges(Direction direction,
String label,
EnumSet<FetchHint> fetchHints) |
Iterable<Edge> |
DefaultVertexQuery.edges(EnumSet<FetchHint> fetchHints) |
Iterable<Edge> |
DefaultGraphQuery.edges(EnumSet<FetchHint> fetchHints) |
Iterable<Edge> |
Query.edges(EnumSet<FetchHint> fetchHints) |
abstract Iterable<Edge> |
VertexQueryBase.edges(EnumSet<FetchHint> fetchHints) |
Iterable<Edge> |
CompositeGraphQuery.edges(EnumSet<FetchHint> fetchHints) |
abstract Iterable<Edge> |
QueryBase.edges(EnumSet<FetchHint> fetchHints) |
Iterable<Edge> |
Query.edges(String label) |
Iterable<Edge> |
CompositeGraphQuery.edges(String label) |
Iterable<Edge> |
QueryBase.edges(String label) |
Iterable<Edge> |
Query.edges(String label,
EnumSet<FetchHint> fetchHints) |
Iterable<Edge> |
CompositeGraphQuery.edges(String label,
EnumSet<FetchHint> fetchHints) |
Iterable<Edge> |
QueryBase.edges(String label,
EnumSet<FetchHint> fetchHints) |
Copyright © 2014–2015. All rights reserved.