| Package | Description |
|---|---|
| org.vertexium |
| 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)
Gets count of edges on this vertex.
|
Iterable<String> |
Vertex.getEdgeIds(Direction direction,
Authorizations authorizations)
Gets the connected edge ids.
|
Iterable<String> |
Vertex.getEdgeIds(Direction direction,
String[] labels,
Authorizations authorizations)
Gets the connected edge ids.
|
Iterable<String> |
Vertex.getEdgeIds(Direction direction,
String label,
Authorizations authorizations)
Gets the connected edge ids.
|
Iterable<String> |
Vertex.getEdgeIds(Vertex otherVertex,
Direction direction,
Authorizations authorizations)
Gets the connected edge ids.
|
Iterable<String> |
Vertex.getEdgeIds(Vertex otherVertex,
Direction direction,
String[] labels,
Authorizations authorizations)
Gets a list of edge ids between this vertex and another vertex.
|
Iterable<String> |
Vertex.getEdgeIds(Vertex otherVertex,
Direction direction,
String label,
Authorizations authorizations)
Gets the connected edge ids.
|
Iterable<EdgeInfo> |
Vertex.getEdgeInfos(Direction direction,
Authorizations authorizations)
Get a list of EdgeInfo.
|
Iterable<EdgeInfo> |
Vertex.getEdgeInfos(Direction direction,
String[] labels,
Authorizations authorizations)
Get a list of EdgeInfo.
|
Iterable<EdgeInfo> |
Vertex.getEdgeInfos(Direction direction,
String label,
Authorizations authorizations)
Get a list of EdgeInfo.
|
Iterable<String> |
Vertex.getEdgeLabels(Direction direction,
Authorizations authorizations)
Gets a list of edge labels.
|
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,
EnumSet<FetchHint> fetchHints,
Long endTime,
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.
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
Authorizations authorizations)
Gets all edge/vertex pairs attached to this vertex.
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edge/vertex pairs attached to this vertex.
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Gets all edge/vertex pairs attached to this vertex.
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
String[] labels,
Authorizations authorizations)
Gets all edge/vertex pairs with any of the given labels attached to this vertex.
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
String[] labels,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edge/vertex pairs with any of the given labels attached to this vertex.
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
String label,
Authorizations authorizations)
Gets all edge/vertex pairs with the given label attached to this vertex.
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
String label,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edge/vertex pairs with the given label attached to this vertex.
|
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.
|
Copyright © 2014–2017. All rights reserved.