Package | Description |
---|---|
com.blazegraph.gremlin.structure | |
com.blazegraph.gremlin.util |
Modifier and Type | Method and Description |
---|---|
CloseableIterator<org.apache.tinkerpop.gremlin.structure.Edge> |
BlazeVertex.edges(org.apache.tinkerpop.gremlin.structure.Direction direction,
String... edgeLabels)
Strength return type to
CloseableIterator . |
CloseableIterator<org.apache.tinkerpop.gremlin.structure.Edge> |
BlazeGraph.edges(Object... edgeIds)
Lookup edges by (optional) ids.
|
CloseableIterator<BlazeGraphEdit> |
BlazeGraph.history(List<String> ids) |
CloseableIterator<BlazeGraphEdit> |
BlazeGraph.history(String... ids)
If history is enabled, return an iterator of historical graph edits
related to any of the supplied ids.
|
CloseableIterator<BlazeGraphAtom> |
BlazeGraph.project(String queryStr)
Project a subgraph using a SPARQL query.
|
CloseableIterator<BlazeGraphAtom> |
BlazeGraph.project(String queryStr,
String externalQueryId)
Project a subgraph using a SPARQL query.
|
<U> CloseableIterator<org.apache.tinkerpop.gremlin.structure.Property<U>> |
EmptyBlazeVertexProperty.properties(String... propertyKeys) |
<U> CloseableIterator<org.apache.tinkerpop.gremlin.structure.Property<U>> |
BlazeVertexProperty.properties(String... keys)
Strength return type to
CloseableIterator . |
<V> CloseableIterator<org.apache.tinkerpop.gremlin.structure.VertexProperty<V>> |
BlazeVertex.properties(String... keys)
Strength return type to
CloseableIterator . |
default <V> CloseableIterator<org.apache.tinkerpop.gremlin.structure.Property<V>> |
BlazeReifiedElement.properties(String... keys)
Pass through to
BlazeGraph.properties(BlazeReifiedElement, String...) |
<V> CloseableIterator<? extends org.apache.tinkerpop.gremlin.structure.Property<V>> |
BlazeElement.properties(String... keys)
Strengthen return type to
CloseableIterator . |
<V> CloseableIterator<org.apache.tinkerpop.gremlin.structure.Property<V>> |
BlazeEdge.properties(String... keys)
Strength return type to
CloseableIterator . |
<V> CloseableIterator<org.apache.tinkerpop.gremlin.structure.Property<V>> |
BlazeGraph.search(String search,
BlazeGraph.Match match)
Search for properties in the graph using the built-in full text index.
|
CloseableIterator<BlazeBindingSet> |
BlazeGraph.select(String queryStr)
Select results using a SPARQL query.
|
CloseableIterator<BlazeBindingSet> |
BlazeGraph.select(String queryStr,
String extQueryId)
Select results using a SPARQL query.
|
default <V> CloseableIterator<V> |
BlazeElement.values(String... keys)
Strengthen return type to
CloseableIterator . |
CloseableIterator<org.apache.tinkerpop.gremlin.structure.Vertex> |
BlazeVertex.vertices(org.apache.tinkerpop.gremlin.structure.Direction direction,
String... edgeLabels)
Strength return type to
CloseableIterator . |
CloseableIterator<org.apache.tinkerpop.gremlin.structure.Vertex> |
BlazeGraph.vertices(Object... vertexIds)
Lookup vertices by (optional) ids.
|
Modifier and Type | Method and Description |
---|---|
static <T> CloseableIterator<T> |
CloseableIterator.emptyIterator()
Empty instance.
|
static <T> CloseableIterator<T> |
CloseableIterator.of(Iterator<T> it,
Runnable onClose)
Construct an instance from the supplied iterator and the supplied
onClose behavior.
|
static <T> CloseableIterator<T> |
CloseableIterator.of(Stream<T> stream)
Construct an instance from a stream using stream.close() as the close
behavior for the iterator.
|
Copyright © 2015–2016 SYSTAP, LLC DBA Blazegraph. All rights reserved.