Class PropertyLookup

    • 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 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()
      • 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.