| Modifier and Type | Method and Description |
|---|---|
Authorizations |
Graph.createAuthorizations(String... auths)
Creates an authorizations object.
|
Authorizations |
ElementBase.getAuthorizations() |
Authorizations |
Element.getAuthorizations()
Gets the authorizations used to get this element.
|
| 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.
|
void |
ElementBase.addPropertyValue(String key,
String name,
Object value,
Metadata metadata,
Visibility visibility,
Authorizations authorizations) |
void |
Element.addPropertyValue(String key,
String name,
Object value,
Metadata metadata,
Visibility visibility,
Authorizations authorizations)
Adds or updates a property.
|
void |
ElementBase.addPropertyValue(String key,
String name,
Object value,
Visibility visibility,
Authorizations authorizations) |
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.
|
Map<String,Boolean> |
GraphBase.doEdgesExist(List<String> ids,
Authorizations authorizations) |
Map<String,Boolean> |
Graph.doEdgesExist(List<String> ids,
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(List<String> ids,
Authorizations authorizations) |
Map<String,Boolean> |
Graph.doVerticesExist(List<String> ids,
Authorizations authorizations)
Tests the existence of vertices with the given authorizations.
|
boolean |
Authorizations.equals(Authorizations authorizations) |
Iterable<Path> |
GraphBase.findPaths(String sourceVertexId,
String destVertexId,
int maxHops,
Authorizations authorizations) |
Iterable<Path> |
Graph.findPaths(String sourceVertexId,
String destVertexId,
int maxHops,
Authorizations authorizations)
Finds all paths between two vertices.
|
Iterable<Path> |
GraphBase.findPaths(String sourceVertexId,
String destVertexId,
int maxHops,
ProgressCallback progressCallback,
Authorizations authorizations) |
Iterable<Path> |
Graph.findPaths(String sourceVertexId,
String destVertexId,
int maxHops,
ProgressCallback progressCallback,
Authorizations authorizations)
Finds all paths between two vertices.
|
Iterable<Path> |
GraphBase.findPaths(Vertex sourceVertex,
Vertex destVertex,
int maxHops,
Authorizations authorizations) |
Iterable<Path> |
Graph.findPaths(Vertex sourceVertex,
Vertex destVertex,
int maxHops,
Authorizations authorizations)
Finds all paths between two vertices.
|
Iterable<Path> |
GraphBase.findPaths(Vertex sourceVertex,
Vertex destVertex,
int maxHops,
ProgressCallback progressCallback,
Authorizations authorizations) |
Iterable<Path> |
Graph.findPaths(Vertex sourceVertex,
Vertex destVertex,
int maxHops,
ProgressCallback progressCallback,
Authorizations authorizations)
Finds all paths between two vertices.
|
Iterable<String> |
GraphBase.findRelatedEdges(Iterable<String> vertexIds,
Authorizations authorizations) |
Iterable<String> |
Graph.findRelatedEdges(Iterable<String> vertexIds,
Authorizations authorizations)
Given a list of vertex ids, find all the edge ids that connect them.
|
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,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations) |
Edge |
Graph.getEdge(String edgeId,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Get an edge from the graph.
|
int |
Vertex.getEdgeCount(Direction direction,
Authorizations authorizations) |
Iterable<String> |
Vertex.getEdgeIds(Direction direction,
Authorizations authorizations) |
Iterable<String> |
Vertex.getEdgeIds(Direction direction,
String[] labels,
Authorizations authorizations) |
Iterable<String> |
Vertex.getEdgeIds(Direction direction,
String label,
Authorizations authorizations) |
Iterable<String> |
Vertex.getEdgeIds(Vertex otherVertex,
Direction direction,
Authorizations authorizations) |
Iterable<String> |
Vertex.getEdgeIds(Vertex otherVertex,
Direction direction,
String[] labels,
Authorizations authorizations) |
Iterable<String> |
Vertex.getEdgeIds(Vertex otherVertex,
Direction direction,
String label,
Authorizations authorizations) |
Iterable<String> |
Vertex.getEdgeLabels(Direction direction,
Authorizations authorizations) |
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,
EnumSet<FetchHint> fetchHints,
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,
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,
Authorizations authorizations)
Gets all edges with the given label 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,
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,
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,
Authorizations authorizations)
Gets all edges between this vertex and another vertex.
|
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,
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,
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,
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,
EnumSet<FetchHint> fetchHints,
Authorizations authorizations)
Gets all edges between this vertex and another vertex matching the given label.
|
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.
|
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,
Authorizations authorizations)
Get the attach vertex on either side of the edge.
|
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,
Authorizations authorizations) |
Vertex |
Graph.getVertex(String vertexId,
Authorizations authorizations)
Get a vertex from the graph.
|
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<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.
|
Iterable<Vertex> |
GraphBase.getVertices(Authorizations authorizations) |
Iterable<Vertex> |
Graph.getVertices(Authorizations authorizations)
Gets all vertices on the graph.
|
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,
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,
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,
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,
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,
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,
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,
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,
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,
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.
|
boolean |
ElementBase.isHidden(Authorizations authorizations) |
abstract boolean |
Property.isHidden(Authorizations authorizations) |
boolean |
Element.isHidden(Authorizations authorizations)
Given the supplied authorizations is this element hidden?
|
boolean |
Graph.isVisibilityValid(Visibility visibility,
Authorizations authorizations)
Given an authorization is the visibility object valid.
|
void |
Graph.markEdgeHidden(Edge edge,
Visibility visibility,
Authorizations authorizations)
Marks an edge as hidden for a given visibility.
|
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,
Visibility visibility,
Authorizations authorizations)
Marks a property as hidden for a given visibility.
|
void |
ElementBase.markPropertyHidden(String key,
String name,
Visibility propertyVisibility,
Visibility visibility,
Authorizations authorizations) |
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,
Visibility visibility,
Authorizations authorizations)
Marks a property as visible for a given visibility, effectively undoing markPropertyHidden.
|
void |
ElementBase.markPropertyVisible(String key,
String name,
Visibility propertyVisibility,
Visibility visibility,
Authorizations authorizations) |
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.
|
void |
Graph.markVertexHidden(Vertex vertex,
Visibility visibility,
Authorizations authorizations)
Marks a vertex as hidden for a given visibility.
|
void |
Graph.markVertexVisible(Vertex vertex,
Visibility visibility,
Authorizations authorizations)
Marks a vertex as visible for a given visibility, effectively undoing markVertexHidden.
|
abstract GraphQuery |
GraphBase.query(Authorizations authorizations) |
GraphQuery |
Graph.query(Authorizations authorizations)
Creates a query builder object used to query the graph.
|
VertexQuery |
Vertex.query(Authorizations authorizations)
Creates a query to query the edges and vertices attached to this vertex.
|
GraphQuery |
GraphBaseWithSearchIndex.query(Authorizations authorizations) |
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.
|
VertexQuery |
Vertex.query(String queryString,
Authorizations authorizations)
Creates a query to query the edges and vertices attached to this vertex.
|
GraphQuery |
GraphBaseWithSearchIndex.query(String queryString,
Authorizations authorizations) |
SimilarToGraphQuery |
GraphBase.querySimilarTo(String[] fields,
String text,
Authorizations authorizations) |
SimilarToGraphQuery |
Graph.querySimilarTo(String[] fields,
String text,
Authorizations authorizations) |
SimilarToGraphQuery |
GraphBaseWithSearchIndex.querySimilarTo(String[] fields,
String text,
Authorizations authorizations) |
abstract void |
GraphBase.reindex(Authorizations authorizations) |
void |
Graph.reindex(Authorizations authorizations)
Reindex all vertices and edges.
|
void |
GraphBaseWithSearchIndex.reindex(Authorizations authorizations) |
protected void |
GraphBaseWithSearchIndex.reindexVertices(Authorizations authorizations) |
abstract void |
GraphBase.removeEdge(Edge edge,
Authorizations authorizations) |
void |
Graph.removeEdge(Edge edge,
Authorizations authorizations)
Removes an edge from the graph.
|
void |
GraphBase.removeEdge(String edgeId,
Authorizations authorizations) |
void |
Graph.removeEdge(String edgeId,
Authorizations authorizations)
Removes an edge from the graph.
|
abstract void |
ElementBase.removeProperty(String name,
Authorizations authorizations) |
void |
Element.removeProperty(String name,
Authorizations authorizations)
Removes all properties with the given name that you have access to.
|
abstract void |
ElementBase.removeProperty(String key,
String name,
Authorizations authorizations) |
void |
Element.removeProperty(String key,
String name,
Authorizations authorizations)
Removes a property given it's key and name from the element.
|
abstract void |
GraphBase.removeVertex(Vertex vertex,
Authorizations authorizations) |
void |
Graph.removeVertex(Vertex vertex,
Authorizations authorizations)
Removes a vertex from the graph.
|
abstract T |
ElementBuilder.save(Authorizations authorizations)
saves the element to the graph.
|
abstract Edge |
EdgeBuilderBase.save(Authorizations authorizations)
Save the edge along with any properties that were set to the graph.
|
abstract Vertex |
VertexBuilder.save(Authorizations authorizations)
Save the vertex along with any properties that were set to the graph.
|
void |
ElementBase.setProperty(String name,
Object value,
Metadata metadata,
Visibility visibility,
Authorizations authorizations) |
void |
Element.setProperty(String name,
Object value,
Metadata metadata,
Visibility visibility,
Authorizations authorizations)
Sets or updates a property value.
|
void |
ElementBase.setProperty(String name,
Object value,
Visibility visibility,
Authorizations authorizations) |
void |
Element.setProperty(String name,
Object value,
Visibility visibility,
Authorizations authorizations)
Sets or updates a property value.
|
| Constructor and Description |
|---|
ElementBase(Graph graph,
String id,
Visibility visibility,
Iterable<Property> properties,
Iterable<PropertyRemoveMutation> propertyRemoveMutations,
Iterable<Visibility> hiddenVisibilities,
Authorizations authorizations) |
| Modifier and Type | Method and Description |
|---|---|
abstract T |
ExistingElementMutationImpl.save(Authorizations authorizations) |
T |
ElementMutation.save(Authorizations authorizations)
saves the properties to the graph.
|
| Modifier and Type | Method and Description |
|---|---|
Iterable<Path> |
PathFindingAlgorithm.findPaths(Graph graph,
Vertex sourceVertex,
Vertex destVertex,
int hops,
ProgressCallback progressCallback,
Authorizations authorizations) |
Iterable<Path> |
RecursivePathFindingAlgorithm.findPaths(Graph graph,
Vertex sourceVertex,
Vertex destVertex,
int hops,
ProgressCallback progressCallback,
Authorizations authorizations) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
MutablePropertyImpl.isHidden(Authorizations authorizations) |
| Modifier and Type | Method and Description |
|---|---|
Authorizations |
QueryParameters.getAuthorizations() |
| Constructor and Description |
|---|
DefaultGraphQuery(Graph graph,
String queryString,
Map<String,PropertyDefinition> propertyDefinitions,
Authorizations authorizations) |
DefaultVertexQuery(Graph graph,
Vertex sourceVertex,
String queryString,
Map<String,PropertyDefinition> propertyDefinitions,
Authorizations authorizations) |
GraphQueryBase(Graph graph,
String[] similarToFields,
String similarToText,
Map<String,PropertyDefinition> propertyDefinitions,
Authorizations authorizations) |
GraphQueryBase(Graph graph,
String queryString,
Map<String,PropertyDefinition> propertyDefinitions,
Authorizations authorizations) |
QueryBase(Graph graph,
String[] similarToFields,
String similarToText,
Map<String,PropertyDefinition> propertyDefinitions,
Authorizations authorizations) |
QueryBase(Graph graph,
String queryString,
Map<String,PropertyDefinition> propertyDefinitions,
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,
Map<String,PropertyDefinition> propertyDefinitions,
Authorizations authorizations) |
| Modifier and Type | Method and Description |
|---|---|
void |
DefaultSearchIndex.addElement(Graph graph,
Element element,
Authorizations authorizations) |
void |
SearchIndex.addElement(Graph graph,
Element element,
Authorizations authorizations) |
void |
DefaultSearchIndex.addElements(Graph graph,
Iterable<? extends Element> elements,
Authorizations authorizations) |
void |
SearchIndex.addElements(Graph graph,
Iterable<? extends Element> elements,
Authorizations authorizations) |
GraphQuery |
DefaultSearchIndex.queryGraph(Graph graph,
String queryString,
Authorizations authorizations) |
GraphQuery |
SearchIndex.queryGraph(Graph graph,
String queryString,
Authorizations authorizations) |
SimilarToGraphQuery |
DefaultSearchIndex.querySimilarTo(Graph graph,
String[] fields,
String text,
Authorizations authorizations) |
SimilarToGraphQuery |
SearchIndex.querySimilarTo(Graph graph,
String[] fields,
String text,
Authorizations authorizations) |
VertexQuery |
DefaultSearchIndex.queryVertex(Graph graph,
Vertex vertex,
String queryString,
Authorizations authorizations) |
VertexQuery |
SearchIndex.queryVertex(Graph graph,
Vertex vertex,
String queryString,
Authorizations authorizations) |
void |
DefaultSearchIndex.removeElement(Graph graph,
Element element,
Authorizations authorizations) |
void |
SearchIndex.removeElement(Graph graph,
Element element,
Authorizations authorizations) |
void |
DefaultSearchIndex.removeProperty(Graph graph,
Element element,
Property property,
Authorizations authorizations) |
void |
SearchIndex.removeProperty(Graph graph,
Element element,
Property property,
Authorizations authorizations) |
void |
DefaultSearchIndex.removeProperty(Graph graph,
Element element,
String propertyKey,
String propertyName,
Visibility propertyVisibility,
Authorizations authorizations) |
void |
SearchIndex.removeProperty(Graph graph,
Element element,
String propertyKey,
String propertyName,
Visibility propertyVisibility,
Authorizations authorizations) |
| Constructor and Description |
|---|
VerticesToEdgeIdsIterable(Iterable<Vertex> vertices,
Authorizations authorizations) |
Copyright © 2014–2015. All rights reserved.