Package org.neo4j.cypherdsl.core
Class PropertyLookup
- java.lang.Object
-
- org.neo4j.cypherdsl.core.PropertyLookup
-
- All Implemented Interfaces:
Visitable,Expression
@API(status=EXPERIMENTAL, since="1.0") public final class PropertyLookup extends Object implements ExpressionSee PropertyLookup- Since:
- 1.0
- Author:
- Michael J. Simons
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(Visitor visitor)static PropertyLookupforName(String name)This creates a property lookup for a given name.booleanisDynamicLookup()-
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, in, isEmpty, isEqualTo, isFalse, isNotEqualTo, isNotNull, isNull, isTrue, lt, lte, matches, matches, multiply, ne, pow, property, remainder, 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()
-
-