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
Since:
1.0
Author:
Michael J. Simons
  • Method Details

    • 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 a symbolic 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

      public void accept(Visitor visitor)
      Description copied from interface: Visitable
      Accept a Visitor visiting this Visitable and its nested Visitables if applicable.
      Specified by:
      accept in interface Visitable
      Parameters:
      visitor - the visitor to notify, must not be null.