| Package | Description |
|---|---|
| com.tinkerpop.blueprints | |
| com.tinkerpop.blueprints.util | |
| com.tinkerpop.blueprints.util.wrappers |
| Modifier and Type | Interface and Description |
|---|---|
interface |
GraphQuery |
interface |
VertexQuery
A VertexQuery object defines a collection of filters and modifiers that are used to intelligently select edges from a vertex.
|
| Modifier and Type | Method and Description |
|---|---|
Query |
Query.has(String key)
Filter out elements that do not have a property with provided key.
|
Query |
Query.has(String key,
Object value)
Filter out elements that do not have a property value equal to provided value.
|
Query |
Query.has(String key,
Predicate predicate,
Object value)
Filter out the element if it does not have a property with a comparable value.
|
<T extends Comparable<T>> |
Query.has(String key,
T value,
Query.Compare compare)
Deprecated.
|
Query |
Query.hasNot(String key)
Filter out elements that have a property with provided key.
|
Query |
Query.hasNot(String key,
Object value)
Filter out elements that have a property value equal to provided value.
|
<T extends Comparable<?>> |
Query.interval(String key,
T startValue,
T endValue)
Filter out the element of its property value is not within the provided interval.
|
Query |
Query.limit(int limit)
Filter out the element if the take number of incident/adjacent elements to retrieve has already been reached.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultGraphQuery
For those graph engines that do not support the low-level querying of the vertices or edges, then DefaultGraphQuery can be used.
|
class |
DefaultQuery |
class |
DefaultVertexQuery
For those graph engines that do not support the low-level querying of the edges of a vertex, then DefaultVertexQuery can be used.
|
| Modifier and Type | Method and Description |
|---|---|
Query |
DefaultQuery.has(String key) |
Query |
DefaultQuery.has(String key,
Object value) |
Query |
DefaultQuery.has(String key,
Predicate predicate,
Object value) |
<T extends Comparable<T>> |
DefaultQuery.has(String key,
T value,
Query.Compare compare) |
Query |
DefaultQuery.hasNot(String key) |
Query |
DefaultQuery.hasNot(String key,
Object value) |
<T extends Comparable<?>> |
DefaultQuery.interval(String key,
T startValue,
T endValue) |
Query |
DefaultQuery.limit(int count) |
| Modifier and Type | Class and Description |
|---|---|
class |
WrappedGraphQuery |
class |
WrapperVertexQuery
A WrapperQuery is useful for wrapping the construction and results of a Vertex.query().
|
Copyright © 2010-2014. All Rights Reserved.