| Package | Description |
|---|---|
| org.vertexium | |
| org.vertexium.mutation | |
| org.vertexium.property | |
| org.vertexium.query | |
| org.vertexium.search | |
| org.vertexium.util |
| Modifier and Type | Method and Description |
|---|---|
Authorizations |
GraphBase.createAuthorizations(Authorizations auths,
Collection<String> additionalAuthorizations) |
Authorizations |
Graph.createAuthorizations(Authorizations auths,
Collection<String> additionalAuthorizations)
Creates an authorizations object combining auths and additionalAuthorizations.
|
Authorizations |
GraphBase.createAuthorizations(Authorizations auths,
String... additionalAuthorizations) |
Authorizations |
Graph.createAuthorizations(Authorizations auths,
String... additionalAuthorizations)
Creates an authorizations object combining auths and additionalAuthorizations.
|
Authorizations |
GraphBase.createAuthorizations(Collection<String> auths) |
Authorizations |
Graph.createAuthorizations(Collection<String> auths)
Creates an authorizations object.
|
abstract Authorizations |
GraphBaseWithSearchIndex.createAuthorizations(String... auths) |
abstract Authorizations |
GraphBase.createAuthorizations(String... auths) |
Authorizations |
Graph.createAuthorizations(String... auths)
Creates an authorizations object.
|
Authorizations |
Element.getAuthorizations()
Gets the authorizations used to get this element.
|
Authorizations |
EdgeInfoEdge.getAuthorizations() |
Authorizations |
SecurityVertexiumException.getAuthorizations() |
| Modifier and Type | Method and Description |
|---|---|
Edge |
GraphBase.addEdge(String edgeId,
String outVertexId,
String inVertexId,
String label,
Visibility visibility,
Authorizations authorizations) |
Edge |
Graph.addEdge(String edgeId,
String outVertexId,
String inVertexId,
String label,
Visibility visibility,
Authorizations authorizations)
Adds an edge between two vertices.
|
Edge |
GraphBase.addEdge(String outVertexId,
String inVertexId,
String label,
Visibility visibility,
Authorizations authorizations) |
Edge |
Graph.addEdge(String outVertexId,
String inVertexId,
String label,
Visibility visibility,
Authorizations authorizations)
Adds an edge between two vertices.
|
Edge |
GraphBase.addEdge(String edgeId,
Vertex outVertex,
Vertex inVertex,
String label,
Visibility visibility,
Authorizations authorizations) |
Edge |
Graph.addEdge(String edgeId,
Vertex outVertex,
Vertex inVertex,
String label,
Visibility visibility,
Authorizations authorizations)
Adds an edge between two vertices.
|
Edge |
GraphBase.addEdge(Vertex outVertex,
Vertex inVertex,
String label,
Visibility visibility,
Authorizations authorizations) |
Edge |
Graph.addEdge(Vertex outVertex,
Vertex inVertex,
String label,
Visibility visibility,
Authorizations authorizations)
Adds an edge between two vertices.
|
default void |
Element.addPropertyValue(String key,
String name,
Object value,
Metadata metadata,
Visibility visibility,
Authorizations authorizations)
Adds or updates a property.
|
default void |
Element.addPropertyValue(String key,
String name,
Object value,
Visibility visibility,
Authorizations authorizations)
Adds or updates a property.
|
Vertex |
GraphBase.addVertex(String vertexId,
Visibility visibility,
Authorizations authorizations) |
Vertex |
Graph.addVertex(String vertexId,
Visibility visibility,
Authorizations authorizations)
Adds a vertex to the graph.
|
Vertex |
GraphBase.addVertex(Visibility visibility,
Authorizations authorizations) |
Vertex |
Graph.addVertex(Visibility visibility,
Authorizations authorizations)
Adds a vertex to the graph.
|
Iterable<Vertex> |
GraphBase.addVertices(Iterable<ElementBuilder<Vertex>> vertices,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.addVertices(Iterable<ElementBuilder<Vertex>> vertices,
Authorizations authorizations)
Adds the vertices to the graph.
|
Authorizations |
GraphBase.createAuthorizations(Authorizations auths,
Collection<String> additionalAuthorizations) |
Authorizations |
Graph.createAuthorizations(Authorizations auths,
Collection<String> additionalAuthorizations)
Creates an authorizations object combining auths and additionalAuthorizations.
|
Authorizations |
GraphBase.createAuthorizations(Authorizations auths,
String... additionalAuthorizations) |
Authorizations |
Graph.createAuthorizations(Authorizations auths,
String... additionalAuthorizations)
Creates an authorizations object combining auths and additionalAuthorizations.
|
protected void |
GraphBase.deleteAllExtendedDataForElement(Element element,
Authorizations authorizations) |
abstract void |
GraphBaseWithSearchIndex.deleteEdge(Edge edge,
Authorizations authorizations) |
abstract void |
GraphBase.deleteEdge(Edge edge,
Authorizations authorizations) |
void |
Graph.deleteEdge(Edge edge,
Authorizations authorizations)
Permanently deletes an edge from the graph.
|
void |
GraphBase.deleteEdge(String edgeId,
Authorizations authorizations) |
void |
Graph.deleteEdge(String edgeId,
Authorizations authorizations)
Permanently deletes an edge from the graph.
|
abstract void |
GraphBase.deleteExtendedDataRow(ExtendedDataRowId id,
Authorizations authorizations) |
void |
Graph.deleteExtendedDataRow(ExtendedDataRowId id,
Authorizations authorizations)
Deletes an extended data row
|
default void |
Element.deleteProperties(String name,
Authorizations authorizations)
Permanently deletes all properties with the given name that you have access to.
|
default void |
Element.deleteProperty(Property property,
Authorizations authorizations)
Permanently deletes a property from the element.
|
default void |
Element.deleteProperty(String key,
String name,
Authorizations authorizations)
Permanently deletes a property given it's key and name from the element.
|
void |
Element.deleteProperty(String key,
String name,
Visibility visibility,
Authorizations authorizations)
Permanently deletes a property given it's key and name from the element.
|
void |
EdgeInfoEdge.deleteProperty(String key,
String name,
Visibility visibility,
Authorizations authorizations) |
void |
GraphBase.deleteVertex(String vertexId,
Authorizations authorizations) |
void |
Graph.deleteVertex(String vertexId,
Authorizations authorizations)
Permanently deletes a vertex from the graph.
|
abstract void |
GraphBaseWithSearchIndex.deleteVertex(Vertex vertex,
Authorizations authorizations) |
abstract void |
GraphBase.deleteVertex(Vertex vertex,
Authorizations authorizations) |
void |
Graph.deleteVertex(Vertex vertex,
Authorizations authorizations)
Permanently deletes a vertex from the graph.
|
Map<String,Boolean> |
GraphBase.doEdgesExist(Iterable<String> ids,
Authorizations authorizations) |
Map<String,Boolean> |
Graph.doEdgesExist(Iterable<String> ids,
Authorizations authorizations)
Tests the existence of edges with the given authorizations.
|
Map<String,Boolean> |
GraphBase.doEdgesExist(Iterable<String> ids,
Long endTime,
Authorizations authorizations) |
Map<String,Boolean> |
Graph.doEdgesExist(Iterable<String> ids,
Long endTime,
Authorizations authorizations)
Tests the existence of edges with the given authorizations.
|
boolean |
GraphBase.doesEdgeExist(String edgeId,
Authorizations authorizations) |
boolean |
Graph.doesEdgeExist(String edgeId,
Authorizations authorizations)
Tests the existence of a edge with the given authorizations.
|
boolean |
GraphBase.doesVertexExist(String vertexId,
Authorizations authorizations) |
boolean |
Graph.doesVertexExist(String vertexId,
Authorizations authorizations)
Tests the existence of a vertex with the given authorizations.
|
Map<String,Boolean> |
GraphBase.doVerticesExist(Iterable<String> ids,
Authorizations authorizations) |
Map<String,Boolean> |
Graph.doVerticesExist(Iterable<String> ids,
Authorizations authorizations)
Tests the existence of vertices with the given authorizations.
|
boolean |
Authorizations.equals(Authorizations authorizations) |
Iterable<String> |
GraphBase.filterEdgeIdsByAuthorization(Iterable<String> edgeIds,
String authorizationToMatch,
EnumSet<ElementFilter> filters,
Authorizations authorizations) |
Iterable<String> |
Graph.filterEdgeIdsByAuthorization(Iterable<String> edgeIds,
String authorizationToMatch,
EnumSet<ElementFilter> filters,
Authorizations authorizations)
Filters a collection of edge ids by the authorizations of that edge, properties, etc.
|
Iterable<String> |
GraphBase.filterVertexIdsByAuthorization(Iterable<String> vertexIds,
String authorizationToMatch,
EnumSet<ElementFilter> filters,
Authorizations authorizations) |
Iterable<String> |
Graph.filterVertexIdsByAuthorization(Iterable<String> vertexIds,
String authorizationToMatch,
EnumSet<ElementFilter> filters,
Authorizations authorizations)
Filters a collection of vertex ids by the authorizations of that vertex, properties, etc.
|
Iterable<Path> |
GraphBase.findPaths(FindPathOptions options,
Authorizations authorizations) |
Iterable<Path> |
Graph.findPaths(FindPathOptions options,
Authorizations authorizations)
Finds all paths between two vertices.
|
Iterable<Path> |
GraphBase.findPaths(String sourceVertexId,
String destVertexId,
int maxHops,
Authorizations authorizations)
Deprecated.
|
Iterable<Path> |
Graph.findPaths(String sourceVertexId,
String destVertexId,
int maxHops,
Authorizations authorizations)
Deprecated.
|
Iterable<Path> |
GraphBase.findPaths(String sourceVertexId,
String destVertexId,
int maxHops,
ProgressCallback progressCallback,
Authorizations authorizations)
Deprecated.
|
Iterable<Path> |
Graph.findPaths(String sourceVertexId,
String destVertexId,
int maxHops,
ProgressCallback progressCallback,
Authorizations authorizations)
Deprecated.
|
Iterable<Path> |
GraphBase.findPaths(String sourceVertexId,
String destVertexId,
String[] labels,
int maxHops,
Authorizations authorizations)
Deprecated.
|
Iterable<Path> |
Graph.findPaths(String sourceVertexId,
String destVertexId,
String[] labels,
int maxHops,
Authorizations authorizations)
Deprecated.
|
Iterable<Path> |
GraphBase.findPaths(String sourceVertexId,
String destVertexId,
String[] labels,
int maxHops,
ProgressCallback progressCallback,
Authorizations authorizations)
Deprecated.
|
Iterable<Path> |
Graph.findPaths(String sourceVertexId,
String destVertexId,
String[] labels,
int maxHops,
ProgressCallback progressCallback,
Authorizations authorizations)
Deprecated.
|
protected void |
GraphBase.findPathsRecursive(FindPathOptions options,
List<Path> foundPaths,
Vertex sourceVertex,
Vertex destVertex,
int hops,
Set<String> seenVertices,
Path currentPath,
ProgressCallback progressCallback,
Authorizations authorizations) |
protected void |
GraphBase.findPathsSetIntersection(FindPathOptions options,
List<Path> foundPaths,
Vertex sourceVertex,
Vertex destVertex,
ProgressCallback progressCallback,
Authorizations authorizations) |
Iterable<String> |
GraphBase.findRelatedEdgeIds(Iterable<String> vertexIds,
Authorizations authorizations) |
Iterable<String> |
Graph.findRelatedEdgeIds(Iterable<String> vertexIds,
Authorizations authorizations)
Given a list of vertex ids, find all the edge ids that connect them.
|
Iterable<String> |
GraphBase.findRelatedEdgeIds(Iterable<String> vertexIds,
Long endTime,
Authorizations authorizations) |
Iterable<String> |
Graph.findRelatedEdgeIds(Iterable<String> vertexIds,
Long endTime,
Authorizations authorizations)
Given a list of vertex ids, find all the edge ids that connect them.
|
Iterable<String> |
GraphBase.findRelatedEdgeIdsForVertices(Iterable<Vertex> verticesIterable,
Authorizations authorizations) |
Iterable<String> |
Graph.findRelatedEdgeIdsForVertices(Iterable<Vertex> vertices,
Authorizations authorizations)
Given a list of vertices, find all the edge ids that connect them.
|
Iterable<String> |
GraphBase.findRelatedEdges(Iterable<String> vertexIds,
Authorizations authorizations)
Deprecated.
|
Iterable<String> |
Graph.findRelatedEdges(Iterable<String> vertexIds,
Authorizations authorizations)
Deprecated.
|
Iterable<String> |
GraphBase.findRelatedEdges(Iterable<String> vertexIds,
Long endTime,
Authorizations authorizations)
Deprecated.
|
Iterable<String> |
Graph.findRelatedEdges(Iterable<String> vertexIds,
Long endTime,
Authorizations authorizations)
Deprecated.
|
Iterable<RelatedEdge> |
GraphBase.findRelatedEdgeSummary(Iterable<String> vertexIds,
Authorizations authorizations) |
Iterable<RelatedEdge> |
Graph.findRelatedEdgeSummary(Iterable<String> vertexIds,
Authorizations authorizations)
Given a list of vertex ids, find all the edges that connect them.
|
Iterable<RelatedEdge> |
GraphBase.findRelatedEdgeSummary(Iterable<String> vertexIds,
Long endTime,
Authorizations authorizations) |
Iterable<RelatedEdge> |
Graph.findRelatedEdgeSummary(Iterable<String> vertexIds,
Long endTime,
Authorizations authorizations)
Given a list of vertex ids, find all the edges that connect them.
|
Iterable<RelatedEdge> |
GraphBase.findRelatedEdgeSummaryForVertices(Iterable<Vertex> verticesIterable,
Authorizations authorizations) |
Iterable<RelatedEdge> |
Graph.findRelatedEdgeSummaryForVertices(Iterable<Vertex> vertices,
Authorizations authorizations)
Given a list of vertices, find all the edges that connect them.
|
protected Iterable<ExtendedDataRow> |
GraphBase.getAllExtendedData(Authorizations authorizations) |
Edge |
GraphBase.getEdge(String edgeId,
Authorizations authorizations) |
Edge |
Graph.getEdge(String edgeId,
Authorizations authorizations)
Get an edge from the graph.
|
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.
|
long |
GraphBase.getEdgeCount(Authorizations authorizations) |
long |
Graph.getEdgeCount(Authorizations authorizations)
Gets a count of the number of edges in the system.
|
int |
Vertex.getEdgeCount(Direction direction,
Authorizations authorizations)
Deprecated.
|
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)
Deprecated.
|
Iterable<Edge> |
GraphBase.getEdges(Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(Authorizations authorizations)
Gets all edges on the graph.
|
Iterable<Edge> |
Vertex.getEdges(Direction direction,
Authorizations authorizations)
Gets all edges attached to this vertex.
|
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,
Authorizations authorizations)
Gets all edges with any of the given labels 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,
Authorizations authorizations)
Gets all edges with the given label 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,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdges(Iterable<String> ids,
Authorizations authorizations)
Gets all edges on the graph matching the given ids.
|
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,
Authorizations authorizations)
Gets all edges between this vertex and another vertex.
|
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,
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,
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,
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,
FetchHints fetchHints,
Authorizations authorizations)
Gets all edges between this vertex and another vertex matching the given label.
|
Iterable<Edge> |
GraphBase.getEdgesInRange(Range idRange,
Authorizations authorizations) |
Iterable<Edge> |
Graph.getEdgesInRange(Range idRange,
Authorizations authorizations)
Gets edges from the graph in the given range.
|
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.
|
EdgesSummary |
Vertex.getEdgesSummary(Authorizations authorizations)
Gets edge summary information
|
Iterable<EdgeVertexPair> |
Vertex.getEdgeVertexPairs(Direction direction,
Authorizations authorizations)
Gets all edge/vertex pairs attached to this vertex.
|
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,
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,
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,
Authorizations authorizations)
Gets all edge/vertex pairs with the given label 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) |
Iterable<ExtendedDataRow> |
GraphBase.getExtendedData(ElementType elementType,
String elementId,
String tableName,
Authorizations authorizations) |
Iterable<ExtendedDataRow> |
Graph.getExtendedData(ElementType elementType,
String elementId,
String tableName,
Authorizations authorizations)
Gets the specified extended data rows.
|
ExtendedDataRow |
GraphBase.getExtendedData(ExtendedDataRowId id,
Authorizations authorizations) |
ExtendedDataRow |
Graph.getExtendedData(ExtendedDataRowId id,
Authorizations authorizations)
Gets the specified extended data row.
|
Iterable<ExtendedDataRow> |
GraphBase.getExtendedData(Iterable<ExtendedDataRowId> idsIterable,
Authorizations authorizations) |
Iterable<ExtendedDataRow> |
Graph.getExtendedData(Iterable<ExtendedDataRowId> ids,
Authorizations authorizations)
Gets the specified extended data rows.
|
Iterable<ExtendedDataRow> |
GraphBase.getExtendedDataInRange(ElementType elementType,
Range elementIdRange,
Authorizations authorizations) |
Iterable<ExtendedDataRow> |
Graph.getExtendedDataInRange(ElementType elementType,
Range elementIdRange,
Authorizations authorizations)
Gets extended data rows from the graph in the given range.
|
default Iterable<HistoricalPropertyValue> |
Element.getHistoricalPropertyValues(Authorizations authorizations)
Gets all property values from all timestamps in descending timestamp order.
|
default Iterable<HistoricalPropertyValue> |
Element.getHistoricalPropertyValues(Long startTime,
Long endTime,
Authorizations authorizations)
Gets all property values from the given range of timestamps in descending timestamp order.
|
default Iterable<HistoricalPropertyValue> |
Element.getHistoricalPropertyValues(String key,
String name,
Visibility visibility,
Authorizations authorizations)
Gets property values from all timestamps in descending timestamp order.
|
default Iterable<HistoricalPropertyValue> |
Element.getHistoricalPropertyValues(String key,
String name,
Visibility visibility,
Long startTime,
Long endTime,
Authorizations authorizations)
Gets property values from the given range of timestamps in descending timestamp order.
|
default Vertex |
Edge.getOtherVertex(String myVertexId,
Authorizations authorizations)
Given a vertexId that represents one side of a relationship, get me the vertex of the other side.
|
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,
Authorizations authorizations)
Get the attach vertex on either side of the edge.
|
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,
Authorizations authorizations) |
Vertex |
Graph.getVertex(String vertexId,
Authorizations authorizations)
Get a vertex from the graph.
|
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.
|
long |
GraphBase.getVertexCount(Authorizations authorizations) |
long |
Graph.getVertexCount(Authorizations authorizations)
Gets a count of the number of vertices in the system.
|
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.
|
Map<Object,Long> |
GraphBaseWithSearchIndex.getVertexPropertyCountByValue(String propertyName,
Authorizations authorizations) |
Map<Object,Long> |
GraphBase.getVertexPropertyCountByValue(String propertyName,
Authorizations authorizations) |
Map<Object,Long> |
Graph.getVertexPropertyCountByValue(String propertyName,
Authorizations authorizations)
Gets the number of times a property with a given value occurs on vertices
|
Iterable<Vertex> |
GraphBase.getVertices(Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(Authorizations authorizations)
Gets all vertices on the graph.
|
default EdgeVertices |
Edge.getVertices(Authorizations authorizations)
Gets both in and out vertices of this edge.
|
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,
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,
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,
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,
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,
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,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(Iterable<String> ids,
Authorizations authorizations)
Gets all vertices matching the given ids 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,
Authorizations authorizations) |
List<Vertex> |
Graph.getVerticesInOrder(Iterable<String> ids,
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,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVerticesInRange(Range idRange,
Authorizations authorizations)
Gets vertices from the graph in the given range.
|
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,
Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVerticesWithPrefix(String vertexIdPrefix,
Authorizations authorizations)
Gets vertices from the graph given the prefix.
|
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.
|
default boolean |
Element.isHidden(Authorizations authorizations)
Given the supplied authorizations is this element hidden?
|
abstract boolean |
Property.isHidden(Authorizations authorizations) |
abstract boolean |
GraphBaseWithSearchIndex.isVisibilityValid(Visibility visibility,
Authorizations authorizations) |
abstract boolean |
GraphBase.isVisibilityValid(Visibility visibility,
Authorizations authorizations) |
boolean |
Graph.isVisibilityValid(Visibility visibility,
Authorizations authorizations)
Given an authorization is the visibility object valid.
|
abstract void |
GraphBaseWithSearchIndex.markEdgeHidden(Edge edge,
Visibility visibility,
Authorizations authorizations) |
abstract void |
GraphBase.markEdgeHidden(Edge edge,
Visibility visibility,
Authorizations authorizations) |
void |
Graph.markEdgeHidden(Edge edge,
Visibility visibility,
Authorizations authorizations)
Marks an edge as hidden for a given visibility.
|
abstract void |
GraphBaseWithSearchIndex.markEdgeVisible(Edge edge,
Visibility visibility,
Authorizations authorizations) |
abstract void |
GraphBase.markEdgeVisible(Edge edge,
Visibility visibility,
Authorizations authorizations) |
void |
Graph.markEdgeVisible(Edge edge,
Visibility visibility,
Authorizations authorizations)
Marks an edge as visible for a given visibility, effectively undoing markEdgeHidden.
|
void |
Element.markPropertyHidden(Property property,
Long timestamp,
Visibility visibility,
Authorizations authorizations)
Marks a property as hidden for a given visibility.
|
void |
EdgeInfoEdge.markPropertyHidden(Property property,
Long timestamp,
Visibility visibility,
Authorizations authorizations) |
default void |
Element.markPropertyHidden(Property property,
Visibility visibility,
Authorizations authorizations)
Marks a property as hidden for a given visibility.
|
default void |
Element.markPropertyHidden(String key,
String name,
Visibility propertyVisibility,
Long timestamp,
Visibility visibility,
Authorizations authorizations)
Marks a property as hidden for a given visibility.
|
default void |
Element.markPropertyHidden(String key,
String name,
Visibility propertyVisibility,
Visibility visibility,
Authorizations authorizations)
Marks a property as hidden for a given visibility.
|
void |
Element.markPropertyVisible(Property property,
Long timestamp,
Visibility visibility,
Authorizations authorizations)
Marks a property as visible for a given visibility, effectively undoing markPropertyHidden.
|
void |
EdgeInfoEdge.markPropertyVisible(Property property,
Long timestamp,
Visibility visibility,
Authorizations authorizations) |
default void |
Element.markPropertyVisible(Property property,
Visibility visibility,
Authorizations authorizations)
Marks a property as visible for a given visibility, effectively undoing markPropertyHidden.
|
default void |
Element.markPropertyVisible(String key,
String name,
Visibility propertyVisibility,
Long timestamp,
Visibility visibility,
Authorizations authorizations)
Marks a property as visible for a given visibility, effectively undoing markPropertyHidden.
|
default void |
Element.markPropertyVisible(String key,
String name,
Visibility propertyVisibility,
Visibility visibility,
Authorizations authorizations)
Marks a property as visible for a given visibility, effectively undoing markPropertyHidden.
|
abstract void |
GraphBaseWithSearchIndex.markVertexHidden(Vertex vertex,
Visibility visibility,
Authorizations authorizations) |
abstract void |
GraphBase.markVertexHidden(Vertex vertex,
Visibility visibility,
Authorizations authorizations) |
void |
Graph.markVertexHidden(Vertex vertex,
Visibility visibility,
Authorizations authorizations)
Marks a vertex as hidden for a given visibility.
|
abstract void |
GraphBaseWithSearchIndex.markVertexVisible(Vertex vertex,
Visibility visibility,
Authorizations authorizations) |
abstract void |
GraphBase.markVertexVisible(Vertex vertex,
Visibility visibility,
Authorizations authorizations) |
void |
Graph.markVertexVisible(Vertex vertex,
Visibility visibility,
Authorizations authorizations)
Marks a vertex as visible for a given visibility, effectively undoing markVertexHidden.
|
GraphQuery |
GraphBaseWithSearchIndex.query(Authorizations authorizations) |
VertexQuery |
Vertex.query(Authorizations authorizations)
Creates a query to query the edges and vertices attached to this vertex.
|
abstract GraphQuery |
GraphBase.query(Authorizations authorizations) |
GraphQuery |
Graph.query(Authorizations authorizations)
Creates a query builder object used to query the graph.
|
MultiVertexQuery |
GraphBaseWithSearchIndex.query(String[] vertexIds,
Authorizations authorizations) |
abstract MultiVertexQuery |
GraphBase.query(String[] vertexIds,
Authorizations authorizations) |
MultiVertexQuery |
Graph.query(String[] vertexIds,
Authorizations authorizations)
Creates a query builder object used to query a list of vertices.
|
MultiVertexQuery |
GraphBaseWithSearchIndex.query(String[] vertexIds,
String queryString,
Authorizations authorizations) |
abstract MultiVertexQuery |
GraphBase.query(String[] vertexIds,
String queryString,
Authorizations authorizations) |
MultiVertexQuery |
Graph.query(String[] vertexIds,
String queryString,
Authorizations authorizations)
Creates a query builder object used to query a list of vertices.
|
GraphQuery |
GraphBaseWithSearchIndex.query(String queryString,
Authorizations authorizations) |
VertexQuery |
Vertex.query(String queryString,
Authorizations authorizations)
Creates a query to query the edges and vertices attached to this vertex.
|
abstract GraphQuery |
GraphBase.query(String queryString,
Authorizations authorizations) |
GraphQuery |
Graph.query(String queryString,
Authorizations authorizations)
Creates a query builder object used to query the graph.
|
SimilarToGraphQuery |
GraphBaseWithSearchIndex.querySimilarTo(String[] fields,
String text,
Authorizations authorizations) |
SimilarToGraphQuery |
GraphBase.querySimilarTo(String[] fields,
String text,
Authorizations authorizations) |
SimilarToGraphQuery |
Graph.querySimilarTo(String[] fields,
String text,
Authorizations authorizations)
Creates a query builder object that finds all vertices similar to the given text for the specified fields.
|
void |
GraphBaseWithSearchIndex.reindex(Authorizations authorizations) |
abstract void |
GraphBase.reindex(Authorizations authorizations) |
void |
Graph.reindex(Authorizations authorizations)
Reindex all vertices and edges.
|
protected void |
GraphBaseWithSearchIndex.reindexVertices(Authorizations authorizations) |
abstract T |
ElementBuilder.save(Authorizations authorizations)
saves the element to the graph.
|
abstract Edge |
EdgeBuilder.save(Authorizations authorizations) |
abstract Vertex |
VertexBuilder.save(Authorizations authorizations)
Save the vertex along with any properties that were set to the graph.
|
abstract Edge |
EdgeBuilderBase.save(Authorizations authorizations)
Save the edge along with any properties that were set to the graph.
|
Iterable<Element> |
GraphBaseWithSearchIndex.saveElementMutations(Iterable<ElementMutation> mutations,
Authorizations authorizations) |
Iterable<Element> |
GraphBase.saveElementMutations(Iterable<ElementMutation> mutations,
Authorizations authorizations) |
Iterable<Element> |
Graph.saveElementMutations(Iterable<ElementMutation> mutations,
Authorizations authorizations)
Saves multiple mutations with a single call.
|
default void |
Element.setProperty(String name,
Object value,
Metadata metadata,
Visibility visibility,
Authorizations authorizations)
Sets or updates a property value.
|
default void |
Element.setProperty(String name,
Object value,
Visibility visibility,
Authorizations authorizations)
Sets or updates a property value.
|
void |
GraphBase.softDeleteEdge(Edge edge,
Authorizations authorizations) |
void |
Graph.softDeleteEdge(Edge edge,
Authorizations authorizations)
Soft deletes an edge from the graph.
|
abstract void |
GraphBaseWithSearchIndex.softDeleteEdge(Edge edge,
Long timestamp,
Authorizations authorizations) |
abstract void |
GraphBase.softDeleteEdge(Edge edge,
Long timestamp,
Authorizations authorizations) |
void |
Graph.softDeleteEdge(Edge edge,
Long timestamp,
Authorizations authorizations)
Soft deletes an edge from the graph.
|
void |
GraphBase.softDeleteEdge(String edgeId,
Authorizations authorizations) |
void |
Graph.softDeleteEdge(String edgeId,
Authorizations authorizations)
Soft deletes an edge from the graph.
|
void |
GraphBase.softDeleteEdge(String edgeId,
Long timestamp,
Authorizations authorizations) |
void |
Graph.softDeleteEdge(String edgeId,
Long timestamp,
Authorizations authorizations)
Soft deletes an edge from the graph.
|
default void |
Element.softDeleteProperties(String name,
Authorizations authorizations)
Soft deletes all properties with the given name that you have access to.
|
default void |
Element.softDeleteProperty(String key,
String name,
Authorizations authorizations)
Soft deletes a property given it's key and name from the element.
|
void |
Element.softDeleteProperty(String key,
String name,
Visibility visibility,
Authorizations authorizations)
Soft deletes a property given it's key and name from the element for a given visibility.
|
void |
EdgeInfoEdge.softDeleteProperty(String key,
String name,
Visibility visibility,
Authorizations authorizations) |
void |
GraphBase.softDeleteVertex(String vertexId,
Authorizations authorizations) |
void |
Graph.softDeleteVertex(String vertexId,
Authorizations authorizations)
Soft deletes a vertex from the graph.
|
void |
GraphBase.softDeleteVertex(String vertexId,
Long timestamp,
Authorizations authorizations) |
void |
Graph.softDeleteVertex(String vertexId,
Long timestamp,
Authorizations authorizations)
Soft deletes a vertex from the graph.
|
void |
GraphBase.softDeleteVertex(Vertex vertex,
Authorizations authorizations) |
void |
Graph.softDeleteVertex(Vertex vertex,
Authorizations authorizations)
Soft deletes a vertex from the graph.
|
abstract void |
GraphBaseWithSearchIndex.softDeleteVertex(Vertex vertex,
Long timestamp,
Authorizations authorizations) |
abstract void |
GraphBase.softDeleteVertex(Vertex vertex,
Long timestamp,
Authorizations authorizations) |
void |
Graph.softDeleteVertex(Vertex vertex,
Long timestamp,
Authorizations authorizations)
Soft deletes a vertex from the graph.
|
void |
GraphBase.visitEdges(GraphVisitor graphVisitor,
Authorizations authorizations) |
void |
Graph.visitEdges(GraphVisitor graphVisitor,
Authorizations authorizations)
Visits all edges on the graph
|
void |
GraphBase.visitElements(GraphVisitor graphVisitor,
Authorizations authorizations) |
void |
Graph.visitElements(GraphVisitor graphVisitor,
Authorizations authorizations)
Visits all elements on the graph
|
void |
GraphBase.visitVertices(GraphVisitor graphVisitor,
Authorizations authorizations) |
void |
Graph.visitVertices(GraphVisitor graphVisitor,
Authorizations authorizations)
Visits all vertices on the graph
|
| Constructor and Description |
|---|
EdgeInfoEdge(Graph graph,
String sourceVertexId,
EdgeInfo edgeInfo,
FetchHints fetchHints,
Authorizations authorizations) |
SecurityVertexiumException(String message,
Authorizations authorizations) |
SecurityVertexiumException(String message,
Authorizations authorizations,
Throwable cause) |
| Modifier and Type | Method and Description |
|---|---|
T |
ElementMutation.save(Authorizations authorizations)
saves the properties to the graph.
|
abstract T |
ExistingElementMutationImpl.save(Authorizations authorizations) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
MutablePropertyImpl.isHidden(Authorizations authorizations) |
| Modifier and Type | Method and Description |
|---|---|
Authorizations |
QueryParameters.getAuthorizations() |
| Modifier and Type | Method and Description |
|---|---|
Query |
ExtendedDataQueryableIterable.query(Authorizations authorizations) |
Query |
QueryableIterable.query(Authorizations authorizations)
Creates a query for this iterable.
|
Query |
ExtendedDataQueryableIterable.query(String queryString,
Authorizations authorizations) |
Query |
QueryableIterable.query(String queryString,
Authorizations authorizations)
Creates a query for this iterable.
|
| Constructor and Description |
|---|
DefaultExtendedDataQuery(Graph graph,
Element element,
String tableName,
String queryString,
Authorizations authorizations) |
DefaultGraphQuery(Graph graph,
String queryString,
Authorizations authorizations) |
DefaultMultiVertexQuery(Graph graph,
String[] vertexIds,
String queryString,
Authorizations authorizations) |
DefaultVertexQuery(Graph graph,
Vertex sourceVertex,
String queryString,
Authorizations authorizations) |
GraphQueryBase(Graph graph,
String[] similarToFields,
String similarToText,
Authorizations authorizations) |
GraphQueryBase(Graph graph,
String queryString,
Authorizations authorizations) |
QueryBase(Graph graph,
String[] similarToFields,
String similarToText,
Authorizations authorizations) |
QueryBase(Graph graph,
String queryString,
Authorizations authorizations) |
QueryParameters(Authorizations authorizations) |
QueryStringQueryParameters(String queryString,
Authorizations authorizations) |
SimilarToQueryParameters(String[] fields,
Authorizations authorizations) |
SimilarToTextQueryParameters(String[] fields,
String text,
Authorizations authorizations) |
VertexQueryBase(Graph graph,
Vertex sourceVertex,
String queryString,
Authorizations authorizations) |
| Modifier and Type | Method and Description |
|---|---|
void |
SearchIndex.addElement(Graph graph,
Element element,
Authorizations authorizations) |
void |
DefaultSearchIndex.addElement(Graph graph,
Element element,
Authorizations authorizations) |
void |
SearchIndex.addElementExtendedData(Graph graph,
Element element,
Iterable<ExtendedDataMutation> extendedDatas,
Authorizations authorizations) |
void |
DefaultSearchIndex.addElementExtendedData(Graph graph,
Element element,
Iterable<ExtendedDataMutation> extendedDatas,
Authorizations authorizations) |
void |
SearchIndex.addElements(Graph graph,
Iterable<? extends Element> elements,
Authorizations authorizations) |
void |
DefaultSearchIndex.addElements(Graph graph,
Iterable<? extends Element> elements,
Authorizations authorizations) |
void |
SearchIndex.addExtendedData(Graph graph,
Iterable<ExtendedDataRow> extendedDatas,
Authorizations authorizations) |
void |
DefaultSearchIndex.addExtendedData(Graph graph,
Iterable<ExtendedDataRow> extendedDatas,
Authorizations authorizations) |
void |
SearchIndex.alterElementVisibility(Graph graph,
Element element,
Visibility oldVisibility,
Visibility newVisibility,
Authorizations authorizations) |
void |
DefaultSearchIndex.alterElementVisibility(Graph graph,
Element element,
Visibility oldVisibility,
Visibility newVisibility,
Authorizations authorizations) |
void |
SearchIndex.deleteElement(Graph graph,
Element element,
Authorizations authorizations) |
void |
DefaultSearchIndex.deleteElement(Graph graph,
Element element,
Authorizations authorizations) |
void |
SearchIndex.deleteExtendedData(Graph graph,
Element element,
String tableName,
String row,
String columnName,
String key,
Visibility visibility,
Authorizations authorizations) |
void |
DefaultSearchIndex.deleteExtendedData(Graph graph,
Element element,
String tableName,
String row,
String columnName,
String key,
Visibility visibility,
Authorizations authorizations) |
void |
SearchIndex.deleteExtendedData(Graph graph,
ExtendedDataRowId extendedDataRowId,
Authorizations authorizations) |
void |
DefaultSearchIndex.deleteExtendedData(Graph graph,
ExtendedDataRowId extendedDataRowId,
Authorizations authorizations) |
default void |
SearchIndex.deleteProperties(Graph graph,
Element element,
Collection<PropertyDescriptor> propertyList,
Authorizations authorizations)
Default delete property simply calls deleteProperty in a loop.
|
void |
SearchIndex.deleteProperty(Graph graph,
Element element,
PropertyDescriptor property,
Authorizations authorizations) |
void |
DefaultSearchIndex.deleteProperty(Graph graph,
Element element,
PropertyDescriptor property,
Authorizations authorizations) |
Map<Object,Long> |
SearchIndexWithVertexPropertyCountByValue.getVertexPropertyCountByValue(Graph graph,
String propertyName,
Authorizations authorizations) |
void |
SearchIndex.markElementHidden(Graph graph,
Element element,
Visibility visibility,
Authorizations authorizations) |
void |
DefaultSearchIndex.markElementHidden(Graph graph,
Element element,
Visibility visibility,
Authorizations authorizations) |
void |
SearchIndex.markElementVisible(Graph graph,
Element element,
Visibility visibility,
Authorizations authorizations) |
void |
DefaultSearchIndex.markElementVisible(Graph graph,
Element element,
Visibility visibility,
Authorizations authorizations) |
void |
SearchIndex.markPropertyHidden(Graph graph,
Element element,
Property property,
Visibility visibility,
Authorizations authorizations) |
void |
DefaultSearchIndex.markPropertyHidden(Graph graph,
Element element,
Property property,
Visibility visibility,
Authorizations authorizations) |
void |
SearchIndex.markPropertyVisible(Graph graph,
Element element,
Property property,
Visibility visibility,
Authorizations authorizations) |
void |
DefaultSearchIndex.markPropertyVisible(Graph graph,
Element element,
Property property,
Visibility visibility,
Authorizations authorizations) |
Query |
SearchIndex.queryExtendedData(Graph graph,
Element element,
String tableName,
String queryString,
Authorizations authorizations) |
Query |
DefaultSearchIndex.queryExtendedData(Graph graph,
Element element,
String tableName,
String queryString,
Authorizations authorizations) |
MultiVertexQuery |
SearchIndex.queryGraph(Graph graph,
String[] vertexIds,
String queryString,
Authorizations authorizations) |
MultiVertexQuery |
DefaultSearchIndex.queryGraph(Graph graph,
String[] vertexIds,
String queryString,
Authorizations authorizations) |
GraphQuery |
SearchIndex.queryGraph(Graph graph,
String queryString,
Authorizations authorizations) |
GraphQuery |
DefaultSearchIndex.queryGraph(Graph graph,
String queryString,
Authorizations authorizations) |
SimilarToGraphQuery |
SearchIndex.querySimilarTo(Graph graph,
String[] fields,
String text,
Authorizations authorizations) |
SimilarToGraphQuery |
DefaultSearchIndex.querySimilarTo(Graph graph,
String[] fields,
String text,
Authorizations authorizations) |
VertexQuery |
SearchIndex.queryVertex(Graph graph,
Vertex vertex,
String queryString,
Authorizations authorizations) |
VertexQuery |
DefaultSearchIndex.queryVertex(Graph graph,
Vertex vertex,
String queryString,
Authorizations authorizations) |
<TElement extends Element> |
SearchIndex.updateElement(Graph graph,
ExistingElementMutation<TElement> mutation,
Authorizations authorizations) |
<TElement extends Element> |
DefaultSearchIndex.updateElement(Graph graph,
ExistingElementMutation<TElement> mutation,
Authorizations authorizations) |
| Constructor and Description |
|---|
VerticesToEdgeIdsIterable(Iterable<? extends Vertex> vertices,
Authorizations authorizations) |
Copyright © 2014–2018. All rights reserved.