Package org.neo4j.cypherdsl.core
Class PropertyLookup
- 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
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(Visitor visitor)
static PropertyLookup
forName(String name)
This creates a property lookup for a given name.boolean
isDynamicLookup()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.neo4j.cypherdsl.core.Expression
add, as, as, ascending, asCondition, concat, contains, descending, divide, endsWith, eq, gt, gte, hasSize, in, isEmpty, isEqualTo, isFalse, isNotEqualTo, isNotNull, isNull, isTrue, lt, lte, matches, matches, multiply, ne, pow, property, remainder, size, sorted, startsWith, subtract
-
-
-
-
Method Detail
-
forName
public static PropertyLookup forName(String name)
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()
-
-