static Property |
Cypher.property(java.lang.String containerName,
java.lang.String... names) |
Dereferences a property for a symbolic name, most likely pointing to a property container like a node or a relationship.
|
static Property |
Cypher.property(java.lang.String containerName,
Expression lookup) |
Creates a dynamic lookup of a property for a symbolic name, most likely pointing to a property container like a
node or a relationship.
|
static Property |
Cypher.property(Expression expression,
java.lang.String... names) |
Dereferences a property on a arbitrary expression.
|
static Property |
Cypher.property(Expression expression,
Expression lookup) |
Creates a dynamic lookup of a property on a arbitrary expression.
|
default Property |
Expression.property(java.lang.String... names) |
Assumes that this expressions refers to a container of some type allowing to reference properties from it.
|
Property |
PropertyContainer.property(java.lang.String name) |
Creates a new Property associated with this property container.
|
Property |
PropertyContainer.property(java.lang.String... names) |
|
Property |
PropertyContainer.property(Expression lookup) |
Creates a new Property associated with this property container.
|
Property |
Property.referencedAs(java.lang.String newReference) |
Creates a new property with an external reference.
|