Package | Description |
---|---|
com.thinkaurelius.titan.core |
Modifier and Type | Method and Description |
---|---|
TitanKey |
TitanProperty.getPropertyKey()
Returns the property key of this property
|
TitanKey |
TitanTransaction.getPropertyKey(String name)
Returns the property key with the given name.
|
TitanKey |
DefaultTypeMaker.makeKey(String name,
TypeMaker factory)
Creates a new property key with the given name and default settings against the provided TypeMaker.
|
TitanKey |
TypeMaker.makePropertyKey()
Creates a property key according to the configuration of this TypeMaker.
|
Modifier and Type | Method and Description |
---|---|
TitanProperty |
TitanVertex.addProperty(TitanKey key,
Object attribute)
Creates a new property for this vertex and given key with the specified attribute.
|
TitanProperty |
TitanTransaction.addProperty(TitanVertex vertex,
TitanKey key,
Object attribute)
Creates a new property for the given vertex and key with the specified attribute.
|
Iterable<TitanEdge> |
TitanTransaction.getEdges(TitanKey key,
Object attribute)
Retrieves all edges which have a property of the given key with the specified value.
|
Iterable<TitanProperty> |
TitanVertex.getProperties(TitanKey key)
Returns an iterable over all properties of the specified property key incident on this vertex.
|
<O> O |
TitanElement.getProperty(TitanKey key)
Retrieves the value associated with the given key on this vertex and casts it to the specified type.
|
TitanVertex |
TitanTransaction.getVertex(TitanKey key,
Object attribute) |
Iterable<TitanVertex> |
TitanTransaction.getVertices(TitanKey key,
Object attribute)
Retrieves all vertices which have a property of the given key with the specified value.
|
TitanVertexQuery |
TitanVertexQuery.has(TitanKey key,
Object value)
Query only for edges that have an incident property matching the given value.
|
TitanGraphQuery |
TitanGraphQuery.has(TitanKey key,
com.thinkaurelius.titan.graphdb.query.keycondition.Relation relation,
Object condition)
The returned element must have a property for the given key that matches the condition according to the
specified relation
|
<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).
|
void |
TitanElement.setProperty(TitanKey key,
Object value)
Sets the value for the given key on this element.
|
Copyright © 2012-2013. All Rights Reserved.