| Package | Description |
|---|---|
| org.vertexium | |
| org.vertexium.query |
| Modifier and Type | Field and Description |
|---|---|
static EnumSet<FetchHint> |
FetchHint.ALL |
static EnumSet<FetchHint> |
FetchHint.ALL_INCLUDING_HIDDEN |
static EnumSet<FetchHint> |
FetchHint.EDGE_LABELS |
static EnumSet<FetchHint> |
FetchHint.EDGE_REFS |
static EnumSet<FetchHint> |
FetchHint.NONE |
| Modifier and Type | Method and Description |
|---|---|
static FetchHint |
FetchHint.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FetchHint[] |
FetchHint.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static EnumSet<FetchHint> |
FetchHint.create(List<FetchHint> results) |
static EnumSet<FetchHint> |
FetchHint.parse(String fetchHintsString) |
| Modifier and Type | Method and Description |
|---|---|
static EnumSet<FetchHint> |
FetchHint.create(List<FetchHint> results) |
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.
|
Edge |
GraphBase.getEdge(String edgeId,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Edge |
Graph.getEdge(String edgeId,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Get an edge from the graph.
|
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,
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,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges with the given label attached to this vertex.
|
Iterable<Edge> |
GraphBase.getEdges(EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges on the graph.
|
abstract Iterable<Edge> |
GraphBaseWithSearchIndex.getEdges(EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
abstract Iterable<Edge> |
GraphBase.getEdges(EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Gets all edges on the graph.
|
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> |
GraphBase.getEdges(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Gets all edges on the graph matching the given ids.
|
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,
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,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges between this vertex and another vertex matching the given label.
|
Iterable<Edge> |
GraphBase.getEdgesInRange(Range idRange,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdgesInRange(Range idRange,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets edges from the graph in the given range.
|
Iterable<Edge> |
GraphBase.getEdgesInRange(Range idRange,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdgesInRange(Range idRange,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Gets edges from the graph in the given range.
|
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,
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,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edge/vertex pairs with the given label attached to this vertex.
|
static Iterable<EdgeVertexPair> |
EdgeVertexPair.getEdgeVertexPairs(Graph graph,
String sourceVertexId,
Iterable<EdgeInfo> edgeInfos,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Vertex |
Edge.getOtherVertex(String myVertexId,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Given a vertexId that represents one side of a relationship, get me the vertex of the other side.
|
Vertex |
Edge.getVertex(Direction direction,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Get the attach vertex on either side of the edge.
|
Vertex |
GraphBase.getVertex(String vertexId,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Vertex |
Graph.getVertex(String vertexId,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Get a vertex from the graph.
|
Vertex |
GraphBase.getVertex(String vertexId,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Vertex |
Graph.getVertex(String vertexId,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Get a vertex from the graph.
|
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,
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,
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.
|
Iterable<Vertex> |
GraphBase.getVertices(EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all vertices on the graph.
|
EdgeVertices |
Edge.getVertices(EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets both in and out vertices of this edge.
|
abstract Iterable<Vertex> |
GraphBaseWithSearchIndex.getVertices(EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
abstract Iterable<Vertex> |
GraphBase.getVertices(EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Gets all vertices on the graph.
|
Iterable<Vertex> |
GraphBase.getVertices(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all vertices matching the given ids on the graph.
|
Iterable<Vertex> |
GraphBase.getVertices(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Gets all vertices matching the given ids on the graph.
|
List<Vertex> |
GraphBase.getVerticesInOrder(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
List<Vertex> |
Graph.getVerticesInOrder(Iterable<String> ids,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all vertices matching the given ids on the graph.
|
Iterable<Vertex> |
GraphBase.getVerticesInRange(Range idRange,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVerticesInRange(Range idRange,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets vertices from the graph in the given range.
|
Iterable<Vertex> |
GraphBase.getVerticesInRange(Range idRange,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVerticesInRange(Range idRange,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Gets vertices from the graph in the given range.
|
Iterable<Vertex> |
GraphBase.getVerticesWithPrefix(String vertexIdPrefix,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVerticesWithPrefix(String vertexIdPrefix,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets vertices from the graph given the prefix.
|
Iterable<Vertex> |
GraphBase.getVerticesWithPrefix(String vertexIdPrefix,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVerticesWithPrefix(String vertexIdPrefix,
EnumSet<FetchHint> fetchHints,
Long endTime,
Authorizations authorizations)
Gets vertices from the graph given the prefix.
|
static String |
FetchHint.toString(EnumSet<FetchHint> fetchHints) |
Copyright © 2014–2017. All rights reserved.