| Package | Description |
|---|---|
| org.neolumin.vertexium | |
| org.neolumin.vertexium.query |
| Modifier and Type | Method and Description |
|---|---|
static Direction |
Direction.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Direction[] |
Direction.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
int |
Vertex.getEdgeCount(Direction direction,
Authorizations authorizations) |
Iterable<String> |
Vertex.getEdgeIds(Direction direction,
Authorizations authorizations) |
Iterable<String> |
Vertex.getEdgeIds(Direction direction,
String[] labels,
Authorizations authorizations) |
Iterable<String> |
Vertex.getEdgeIds(Direction direction,
String label,
Authorizations authorizations) |
Iterable<String> |
Vertex.getEdgeIds(Vertex otherVertex,
Direction direction,
Authorizations authorizations) |
Iterable<String> |
Vertex.getEdgeIds(Vertex otherVertex,
Direction direction,
String[] labels,
Authorizations authorizations) |
Iterable<String> |
Vertex.getEdgeIds(Vertex otherVertex,
Direction direction,
String label,
Authorizations authorizations) |
Iterable<String> |
Vertex.getEdgeLabels(Direction direction,
Authorizations authorizations) |
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.
|
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.
|
Vertex |
Edge.getVertex(Direction direction,
Authorizations authorizations)
Get the attach vertex on either side of the edge.
|
Vertex |
Edge.getVertex(Direction direction,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Get the attach vertex on either side of the edge.
|
String |
Edge.getVertexId(Direction direction)
Get the attach vertex id on either side of the edge.
|
Iterable<String> |
Vertex.getVertexIds(Direction direction,
Authorizations authorizations)
Gets vertex ids of connected vertices.
|
Iterable<String> |
Vertex.getVertexIds(Direction direction,
String[] labels,
Authorizations authorizations)
Gets vertex ids of connected vertices.
|
Iterable<String> |
Vertex.getVertexIds(Direction direction,
String label,
Authorizations authorizations)
Gets vertex ids of connected vertices.
|
Iterable<Vertex> |
Vertex.getVertices(Direction direction,
Authorizations authorizations)
Similar to getEdges but gets the vertices on the other side of the edges attached to this vertex.
|
Iterable<Vertex> |
Vertex.getVertices(Direction direction,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Similar to getEdges but gets the vertices on the other side of the edges attached to this vertex.
|
Iterable<Vertex> |
Vertex.getVertices(Direction direction,
String[] labels,
Authorizations authorizations)
Similar to getEdges but gets the vertices on the other side of the edges attached to this vertex that have any of the given labels.
|
Iterable<Vertex> |
Vertex.getVertices(Direction direction,
String[] labels,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Similar to getEdges but gets the vertices on the other side of the edges attached to this vertex that have any of the given labels.
|
Iterable<Vertex> |
Vertex.getVertices(Direction direction,
String label,
Authorizations authorizations)
Similar to getEdges but gets the vertices on the other side of the edges attached to this vertex that have the given label.
|
Iterable<Vertex> |
Vertex.getVertices(Direction direction,
String label,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Similar to getEdges but gets the vertices on the other side of the edges attached to this vertex that have the given label.
|
| Modifier and Type | Method and Description |
|---|---|
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) |
Copyright © 2014–2015. All rights reserved.