| Package | Description |
|---|---|
| org.vertexium | |
| org.vertexium.property | |
| org.vertexium.query |
| Modifier and Type | Field and Description |
|---|---|
static FetchHints |
FetchHints.ALL |
static FetchHints |
FetchHints.ALL_INCLUDING_HIDDEN |
static FetchHints |
FetchHints.EDGE_LABELS |
static FetchHints |
FetchHints.EDGE_REFS |
static FetchHints |
FetchHints.NONE |
static FetchHints |
FetchHints.PROPERTIES_AND_METADATA |
| Modifier and Type | Method and Description |
|---|---|
FetchHints |
FetchHintsBuilder.build() |
FetchHints |
GraphBaseWithSearchIndex.getDefaultFetchHints() |
FetchHints |
Graph.getDefaultFetchHints()
The default fetch hints to use if none are provided
|
FetchHints |
ExtendedDataRowBase.getFetchHints() |
FetchHints |
Element.getFetchHints()
Fetch hints used when fetching this element.
|
FetchHints |
EdgeInfoEdge.getFetchHints() |
abstract FetchHints |
Property.getFetchHints() |
FetchHints |
ExtendedDataRow.getFetchHints()
Fetch hints used to get this row.
|
FetchHints |
Metadata.getFetchHints() |
| Modifier and Type | Method and Description |
|---|---|
static FetchHintsBuilder |
FetchHints.builder(FetchHints fetchHints) |
Edge |
GraphBase.getEdge(String edgeId,
FetchHints fetchHints,
Authorizations authorizations) |
Edge |
Graph.getEdge(String edgeId,
FetchHints fetchHints,
Authorizations authorizations)
Get an edge from the graph.
|
Edge |
GraphBase.getEdge(String edgeId,
FetchHints fetchHints,
Long endTime,
Authorizations authorizations) |
Edge |
Graph.getEdge(String edgeId,
FetchHints fetchHints,
Long endTime,
Authorizations authorizations)
Get an edge from the graph.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
FetchHints fetchHints,
Authorizations authorizations)
Gets all edges attached to this vertex.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
FetchHints fetchHints,
Long endTime,
Authorizations authorizations)
Gets all edges attached to this vertex.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
String[] labels,
FetchHints fetchHints,
Authorizations authorizations)
Gets all edges with any of the given labels attached to this vertex.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
String label,
FetchHints fetchHints,
Authorizations authorizations)
Gets all edges with the given label attached to this vertex.
|
Iterable<Edge> |
GraphBase.getEdges(FetchHints fetchHints,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(FetchHints fetchHints,
Authorizations authorizations)
Gets all edges on the graph.
|
abstract Iterable<Edge> |
GraphBaseWithSearchIndex.getEdges(FetchHints fetchHints,
Long endTime,
Authorizations authorizations) |
abstract Iterable<Edge> |
GraphBase.getEdges(FetchHints fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(FetchHints fetchHints,
Long endTime,
Authorizations authorizations)
Gets all edges on the graph.
|
Iterable<Edge> |
GraphBase.getEdges(Iterable<String> ids,
FetchHints fetchHints,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(Iterable<String> ids,
FetchHints fetchHints,
Authorizations authorizations)
Gets all edges on the graph matching the given ids.
|
Iterable<Edge> |
GraphBase.getEdges(Iterable<String> ids,
FetchHints fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(Iterable<String> ids,
FetchHints fetchHints,
Long endTime,
Authorizations authorizations)
Gets all edges on the graph matching the given ids.
|
Iterable<Edge> |
Vertex.getEdges(Vertex otherVertex,
Direction direction,
FetchHints fetchHints,
Authorizations authorizations)
Gets all edges between this vertex and another vertex.
|
Iterable<Edge> |
Vertex.getEdges(Vertex otherVertex,
Direction direction,
String[] labels,
FetchHints 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,
FetchHints fetchHints,
Authorizations authorizations)
Gets all edges between this vertex and another vertex matching the given label.
|
Iterable<Edge> |
GraphBase.getEdgesInRange(Range idRange,
FetchHints fetchHints,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdgesInRange(Range idRange,
FetchHints fetchHints,
Authorizations authorizations)
Gets edges from the graph in the given range.
|
Iterable<Edge> |
GraphBase.getEdgesInRange(Range idRange,
FetchHints fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdgesInRange(Range idRange,
FetchHints fetchHints,
Long endTime,
Authorizations authorizations)
Gets edges from the graph in the given range.
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
FetchHints fetchHints,
Authorizations authorizations)
Gets all edge/vertex pairs attached to this vertex.
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
FetchHints fetchHints,
Long endTime,
Authorizations authorizations)
Gets all edge/vertex pairs attached to this vertex.
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
String[] labels,
FetchHints 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,
FetchHints 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,
FetchHints fetchHints,
Long endTime,
Authorizations authorizations) |
default Vertex |
Edge.getOtherVertex(String myVertexId,
FetchHints fetchHints,
Authorizations authorizations)
Given a vertexId that represents one side of a relationship, get me the vertex of the other side.
|
default Vertex |
Edge.getVertex(Direction direction,
FetchHints fetchHints,
Authorizations authorizations)
Get the attach vertex on either side of the edge.
|
Vertex |
GraphBase.getVertex(String vertexId,
FetchHints fetchHints,
Authorizations authorizations) |
Vertex |
Graph.getVertex(String vertexId,
FetchHints fetchHints,
Authorizations authorizations)
Get a vertex from the graph.
|
Vertex |
GraphBase.getVertex(String vertexId,
FetchHints fetchHints,
Long endTime,
Authorizations authorizations) |
Vertex |
Graph.getVertex(String vertexId,
FetchHints fetchHints,
Long endTime,
Authorizations authorizations)
Get a vertex from the graph.
|
Iterable<Vertex> |
Vertex.getVertices(Direction direction,
FetchHints 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,
FetchHints 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,
FetchHints 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(FetchHints fetchHints,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(FetchHints fetchHints,
Authorizations authorizations)
Gets all vertices on the graph.
|
default EdgeVertices |
Edge.getVertices(FetchHints fetchHints,
Authorizations authorizations)
Gets both in and out vertices of this edge.
|
abstract Iterable<Vertex> |
GraphBaseWithSearchIndex.getVertices(FetchHints fetchHints,
Long endTime,
Authorizations authorizations) |
abstract Iterable<Vertex> |
GraphBase.getVertices(FetchHints fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(FetchHints fetchHints,
Long endTime,
Authorizations authorizations)
Gets all vertices on the graph.
|
Iterable<Vertex> |
GraphBase.getVertices(Iterable<String> ids,
FetchHints fetchHints,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(Iterable<String> ids,
FetchHints fetchHints,
Authorizations authorizations)
Gets all vertices matching the given ids on the graph.
|
Iterable<Vertex> |
GraphBase.getVertices(Iterable<String> ids,
FetchHints fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(Iterable<String> ids,
FetchHints fetchHints,
Long endTime,
Authorizations authorizations)
Gets all vertices matching the given ids on the graph.
|
List<Vertex> |
GraphBase.getVerticesInOrder(Iterable<String> ids,
FetchHints fetchHints,
Authorizations authorizations) |
List<Vertex> |
Graph.getVerticesInOrder(Iterable<String> ids,
FetchHints fetchHints,
Authorizations authorizations)
Gets all vertices matching the given ids on the graph.
|
Iterable<Vertex> |
GraphBase.getVerticesInRange(Range idRange,
FetchHints fetchHints,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVerticesInRange(Range idRange,
FetchHints fetchHints,
Authorizations authorizations)
Gets vertices from the graph in the given range.
|
Iterable<Vertex> |
GraphBase.getVerticesInRange(Range idRange,
FetchHints fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVerticesInRange(Range idRange,
FetchHints fetchHints,
Long endTime,
Authorizations authorizations)
Gets vertices from the graph in the given range.
|
Iterable<Vertex> |
GraphBase.getVerticesWithPrefix(String vertexIdPrefix,
FetchHints fetchHints,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVerticesWithPrefix(String vertexIdPrefix,
FetchHints fetchHints,
Authorizations authorizations)
Gets vertices from the graph given the prefix.
|
Iterable<Vertex> |
GraphBase.getVerticesWithPrefix(String vertexIdPrefix,
FetchHints fetchHints,
Long endTime,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVerticesWithPrefix(String vertexIdPrefix,
FetchHints fetchHints,
Long endTime,
Authorizations authorizations)
Gets vertices from the graph given the prefix.
|
| Constructor and Description |
|---|
EdgeInfoEdge(Graph graph,
String sourceVertexId,
EdgeInfo edgeInfo,
FetchHints fetchHints,
Authorizations authorizations) |
ExtendedDataRowBase(FetchHints fetchHints) |
FetchHintsBuilder(FetchHints fetchHints) |
Metadata(FetchHints fetchHints) |
Metadata(Metadata copyFromMetadata,
FetchHints fetchHints) |
VertexiumMissingFetchHintException(FetchHints fetchHints,
String required) |
| Modifier and Type | Method and Description |
|---|---|
FetchHints |
MutablePropertyImpl.getFetchHints() |
| Constructor and Description |
|---|
MutablePropertyImpl(String key,
String name,
Object value,
Metadata metadata,
Long timestamp,
Set<Visibility> hiddenVisibilities,
Visibility visibility,
FetchHints fetchHints) |
| Modifier and Type | Method and Description |
|---|---|
protected FetchHints |
QueryBase.idFetchHintsToElementFetchHints(EnumSet<IdFetchHint> idFetchHints) |
Copyright © 2014–2018. All rights reserved.