Package | Description |
---|---|
com.thinkaurelius.titan.core |
Modifier and Type | Method and Description |
---|---|
TitanVertexQuery |
TitanVertexQuery.direction(com.tinkerpop.blueprints.Direction d)
Query only for relations in the given direction.
|
TitanVertexQuery |
TitanVertexQuery.group(TypeGroup group)
Query for only those relations having a type included in the given
TypeGroup . |
TitanVertexQuery |
TitanVertexQuery.has(String type,
Object value)
Query only for edges that have an incident property or unidirected edge matching the given value.
|
<T extends Comparable<T>> |
TitanVertexQuery.has(String s,
T t,
com.tinkerpop.blueprints.Query.Compare compare) |
TitanVertexQuery |
TitanVertexQuery.has(TitanKey key,
Object value)
Query only for edges that have an incident property matching the given value.
|
TitanVertexQuery |
TitanVertexQuery.has(TitanLabel label,
TitanVertex vertex)
Query only for edges that have a unidirected edge matching pointing to the given vertex
It is expected that this label is unidirected (
TitanLabel.isUnidirected()
and the query is restricted to edges having an incident unidirectional edge pointing to the given vertex. |
<T extends Comparable<T>> |
TitanVertexQuery.interval(String key,
T start,
T end)
Query for those edges that have an incident property whose values lies in the interval by [start,end).
|
<T extends Comparable<T>> |
TitanVertexQuery.interval(TitanKey key,
T start,
T end)
Query for those edges that have an incident property whose values lies in the interval by [start,end).
|
TitanVertexQuery |
TitanVertexQuery.keys(String... keys)
Query for only those properties having one of the given keys.
|
TitanVertexQuery |
TitanVertexQuery.labels(String... labels)
Query for only those edges matching one of the given labels.
|
TitanVertexQuery |
TitanVertexQuery.limit(long limit)
Sets the retrieval limit for this query.
|
TitanVertexQuery |
TitanVertex.query()
Starts a new TitanQuery for this vertex.
|
TitanVertexQuery |
TitanVertexQuery.types(TitanType... type)
Query for only those relations matching one of the given types.
|
Copyright © 2012-2013. All Rights Reserved.