java.lang.Object
org.neo4j.cypherdsl.core.PropertyLookup
- All Implemented Interfaces:
Visitable,Expression
@API(status=STABLE,
since="1.0")
public final class PropertyLookup
extends Object
implements Expression
See PropertyLookup
- Since:
- 1.0
- Author:
- Michael J. Simons
-
Method Summary
Modifier and TypeMethodDescriptionvoidstatic PropertyLookupThis creates a property lookup for a given name.booleanMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.neo4j.cypherdsl.core.Expression
add, as, as, ascending, asCondition, concat, contains, descending, divide, endsWith, eq, gt, gte, hasSize, in, includesAll, includesAny, isEmpty, isEqualTo, isFalse, isNotEqualTo, isNotNull, isNull, isTrue, lt, lte, matches, matches, multiply, ne, pow, property, remainder, size, sorted, startsWith, subtract
-
Method Details
-
forName
This creates a property lookup for a given name. It is mostly usable when building an AST outside the fluent API. If you need to create property lookup for asymbolic name, most likely you can just use the symbolic name.- Parameters:
name- The name to lookup- Returns:
- A property lookup
- Since:
- 2021.3.0
-
isDynamicLookup
@API(status=INTERNAL) public boolean isDynamicLookup()- Returns:
- true if this is a dynamic property
-
accept
Description copied from interface:Visitable
-