| Modifier and Type | Method and Description |
|---|---|
int |
getEdgeCount(Direction direction,
Authorizations authorizations) |
Iterable<String> |
getEdgeIds(Direction direction,
Authorizations authorizations) |
Iterable<String> |
getEdgeIds(Direction direction,
String[] labels,
Authorizations authorizations) |
Iterable<String> |
getEdgeIds(Direction direction,
String label,
Authorizations authorizations) |
Iterable<String> |
getEdgeIds(Vertex otherVertex,
Direction direction,
Authorizations authorizations) |
Iterable<String> |
getEdgeIds(Vertex otherVertex,
Direction direction,
String[] labels,
Authorizations authorizations) |
Iterable<String> |
getEdgeIds(Vertex otherVertex,
Direction direction,
String label,
Authorizations authorizations) |
Iterable<String> |
getEdgeLabels(Direction direction,
Authorizations authorizations) |
Iterable<Edge> |
getEdges(Direction direction,
Authorizations authorizations)
Gets all edges attached to this vertex.
|
Iterable<Edge> |
getEdges(Direction direction,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges attached to this vertex.
|
Iterable<Edge> |
getEdges(Direction direction,
String[] labels,
Authorizations authorizations)
Gets all edges with any of the given labels attached to this vertex.
|
Iterable<Edge> |
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> |
getEdges(Direction direction,
String label,
Authorizations authorizations)
Gets all edges with the given label attached to this vertex.
|
Iterable<Edge> |
getEdges(Direction direction,
String label,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges with the given label attached to this vertex.
|
Iterable<Edge> |
getEdges(Vertex otherVertex,
Direction direction,
Authorizations authorizations)
Gets all edges between this vertex and another vertex.
|
Iterable<Edge> |
getEdges(Vertex otherVertex,
Direction direction,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges between this vertex and another vertex.
|
Iterable<Edge> |
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> |
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> |
getEdges(Vertex otherVertex,
Direction direction,
String label,
Authorizations authorizations)
Gets all edges between this vertex and another vertex matching the given label.
|
Iterable<Edge> |
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<String> |
getVertexIds(Direction direction,
Authorizations authorizations)
Gets vertex ids of connected vertices.
|
Iterable<String> |
getVertexIds(Direction direction,
String[] labels,
Authorizations authorizations)
Gets vertex ids of connected vertices.
|
Iterable<String> |
getVertexIds(Direction direction,
String label,
Authorizations authorizations)
Gets vertex ids of connected vertices.
|
Iterable<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> |
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> |
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> |
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> |
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> |
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.
|
ExistingElementMutation<Vertex> |
prepareMutation()
Prepares a mutation to allow changing multiple property values at the same time.
|
VertexQuery |
query(Authorizations authorizations)
Creates a query to query the edges and vertices attached to this vertex.
|
VertexQuery |
query(String queryString,
Authorizations authorizations)
Creates a query to query the edges and vertices attached to this vertex.
|
addPropertyValue, addPropertyValue, getAuthorizations, getGraph, getId, getProperties, getProperties, getProperties, getProperty, getProperty, getProperty, getProperty, getPropertyValue, getPropertyValue, getPropertyValue, getPropertyValue, getPropertyValues, getPropertyValues, getVisibility, isHidden, markPropertyHidden, markPropertyHidden, markPropertyVisible, markPropertyVisible, mergeProperties, removeProperty, removeProperty, setProperty, setPropertyIterable<Edge> getEdges(Direction direction, Authorizations authorizations)
direction - The side of the edge that this vertex is attached to.authorizations - The authorizations used to find the edges.Iterable<Edge> getEdges(Direction direction, EnumSet<FetchHint> fetchHints, Authorizations authorizations)
direction - The side of the edge that this vertex is attached to.fetchHints - Hint on what should be fetched from the datastore.authorizations - The authorizations used to find the edges.Iterable<String> getEdgeIds(Direction direction, Authorizations authorizations)
Iterable<Edge> getEdges(Direction direction, String label, Authorizations authorizations)
direction - The side of the edge that this vertex is attached to.label - The edge label to search for.authorizations - The authorizations used to find the edges.Iterable<Edge> getEdges(Direction direction, String label, EnumSet<FetchHint> fetchHints, Authorizations authorizations)
direction - The side of the edge that this vertex is attached to.label - The edge label to search for.fetchHints - Hint on what should be fetched from the datastore.authorizations - The authorizations used to find the edges.Iterable<String> getEdgeIds(Direction direction, String label, Authorizations authorizations)
Iterable<Edge> getEdges(Direction direction, String[] labels, Authorizations authorizations)
direction - The side of the edge that this vertex is attached to.labels - An array of edge labels to search for.authorizations - The authorizations used to find the edges.Iterable<Edge> getEdges(Direction direction, String[] labels, EnumSet<FetchHint> fetchHints, Authorizations authorizations)
direction - The side of the edge that this vertex is attached to.labels - An array of edge labels to search for.fetchHints - Hint on what should be fetched from the datastore.authorizations - The authorizations used to find the edges.Iterable<String> getEdgeIds(Direction direction, String[] labels, Authorizations authorizations)
Iterable<Edge> getEdges(Vertex otherVertex, Direction direction, Authorizations authorizations)
otherVertex - The other vertex.direction - The direction of edges to find relative to this vertex.authorizations - The authorizations used to find the edges.Iterable<Edge> getEdges(Vertex otherVertex, Direction direction, EnumSet<FetchHint> fetchHints, Authorizations authorizations)
otherVertex - The other vertex.direction - The direction of edges to find relative to this vertex.fetchHints - Hint on what should be fetched from the datastore.authorizations - The authorizations used to find the edges.Iterable<String> getEdgeIds(Vertex otherVertex, Direction direction, Authorizations authorizations)
Iterable<Edge> getEdges(Vertex otherVertex, Direction direction, String label, Authorizations authorizations)
otherVertex - The other vertex.direction - The direction of edges to find relative to this vertex.label - The edge label to search for.authorizations - The authorizations used to find the edges.Iterable<Edge> getEdges(Vertex otherVertex, Direction direction, String label, EnumSet<FetchHint> fetchHints, Authorizations authorizations)
otherVertex - The other vertex.direction - The direction of edges to find relative to this vertex.label - The edge label to search for.fetchHints - Hint on what should be fetched from the datastore.authorizations - The authorizations used to find the edges.Iterable<String> getEdgeIds(Vertex otherVertex, Direction direction, String label, Authorizations authorizations)
Iterable<Edge> getEdges(Vertex otherVertex, Direction direction, String[] labels, Authorizations authorizations)
otherVertex - The other vertex.direction - The direction of edges to find relative to this vertex.labels - An array of edge labels to search for.authorizations - The authorizations used to find the edges.Iterable<Edge> getEdges(Vertex otherVertex, Direction direction, String[] labels, EnumSet<FetchHint> fetchHints, Authorizations authorizations)
otherVertex - The other vertex.direction - The direction of edges to find relative to this vertex.labels - An array of edge labels to search for.fetchHints - Hint on what should be fetched from the datastore.authorizations - The authorizations used to find the edges.Iterable<String> getEdgeIds(Vertex otherVertex, Direction direction, String[] labels, Authorizations authorizations)
int getEdgeCount(Direction direction, Authorizations authorizations)
Iterable<String> getEdgeLabels(Direction direction, Authorizations authorizations)
Iterable<Vertex> getVertices(Direction direction, Authorizations authorizations)
direction - The direction relative to this vertex.authorizations - The authorizations used to find the vertices.Iterable<Vertex> getVertices(Direction direction, EnumSet<FetchHint> fetchHints, Authorizations authorizations)
direction - The direction relative to this vertex.fetchHints - Hint on what should be fetched from the datastore.authorizations - The authorizations used to find the vertices.Iterable<Vertex> getVertices(Direction direction, String label, Authorizations authorizations)
direction - The direction relative to this vertex.label - The label of edges to traverse to find the vertices.authorizations - The authorizations used to find the vertices.Iterable<Vertex> getVertices(Direction direction, String label, EnumSet<FetchHint> fetchHints, Authorizations authorizations)
direction - The direction relative to this vertex.label - The label of edges to traverse to find the vertices.fetchHints - Hint on what should be fetched from the datastore.authorizations - The authorizations used to find the vertices.Iterable<Vertex> getVertices(Direction direction, String[] labels, Authorizations authorizations)
direction - The direction relative to this vertex.labels - The labels of edges to traverse to find the vertices.authorizations - The authorizations used to find the vertices.Iterable<Vertex> getVertices(Direction direction, String[] labels, EnumSet<FetchHint> fetchHints, Authorizations authorizations)
direction - The direction relative to this vertex.labels - The labels of edges to traverse to find the vertices.fetchHints - Hint on what should be fetched from the datastore.authorizations - The authorizations used to find the vertices.Iterable<String> getVertexIds(Direction direction, String label, Authorizations authorizations)
direction - The direction relative to this vertex.label - The label of edges to traverse to find the vertices.authorizations - The authorizations used to find the vertices.Iterable<String> getVertexIds(Direction direction, String[] labels, Authorizations authorizations)
direction - The direction relative to this vertex.labels - The labels of edges to traverse to find the vertices.authorizations - The authorizations used to find the vertices.Iterable<String> getVertexIds(Direction direction, Authorizations authorizations)
direction - The direction relative to this vertex.authorizations - The authorizations used to find the vertices.VertexQuery query(Authorizations authorizations)
authorizations - The authorizations used to find the edges and vertices.VertexQuery query(String queryString, Authorizations authorizations)
queryString - The string to search for.authorizations - The authorizations used to find the edges and vertices.ExistingElementMutation<Vertex> prepareMutation()
prepareMutation in interface ElementCopyright © 2014–2015. All rights reserved.