Package | Description |
---|---|
com.thinkaurelius.titan.core |
Modifier and Type | Method and Description |
---|---|
TitanProperty |
TitanVertex.addProperty(String key,
Object attribute)
Creates a new property for this vertex and given key with the specified attribute.
|
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,
String key,
Object attribute)
Creates a new property for the given vertex and 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.
|
Modifier and Type | Method and Description |
---|---|
Iterable<TitanProperty> |
TitanVertex.getProperties()
Returns an iterable over all properties incident on this vertex.
|
Iterable<TitanProperty> |
TitanVertex.getProperties(String key)
Returns an iterable over all properties of the specified property key incident on this vertex.
|
Iterable<TitanProperty> |
TitanVertex.getProperties(TitanKey key)
Returns an iterable over all properties of the specified property key incident on this vertex.
|
Iterable<TitanProperty> |
TitanVertexQuery.properties()
Returns an iterable over all incident properties that match this query
|
Copyright © 2012-2013. All Rights Reserved.