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