| Package | Description |
|---|---|
| org.neolumin.vertexium | |
| org.neolumin.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_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 |
|---|---|
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.
|
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,
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.
|
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,
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,
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.
|
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.
|
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.
|
abstract Iterable<Vertex> |
GraphBase.getVertices(EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(EnumSet<FetchHint> fetchHints,
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.
|
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.
|
| Modifier and Type | Method and Description |
|---|---|
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,
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,
EnumSet<FetchHint> fetchHints) |
Iterable<Edge> |
CompositeGraphQuery.edges(String label,
EnumSet<FetchHint> fetchHints) |
Iterable<Edge> |
QueryBase.edges(String label,
EnumSet<FetchHint> fetchHints) |
Iterable<Vertex> |
DefaultVertexQuery.vertices(EnumSet<FetchHint> fetchHints) |
Iterable<Vertex> |
DefaultGraphQuery.vertices(EnumSet<FetchHint> fetchHints) |
Iterable<Vertex> |
Query.vertices(EnumSet<FetchHint> fetchHints) |
abstract Iterable<Vertex> |
VertexQueryBase.vertices(EnumSet<FetchHint> fetchHints) |
Iterable<Vertex> |
CompositeGraphQuery.vertices(EnumSet<FetchHint> fetchHints) |
abstract Iterable<Vertex> |
QueryBase.vertices(EnumSet<FetchHint> fetchHints) |
Copyright © 2014–2015. All rights reserved.