Interface EnvVisitor


  • @Internal
    public interface EnvVisitor
    Simple API for visiting the declarations of a CEL environment

    CEL Library Internals. Do Not Use.

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void visitDecl​(java.lang.String name, java.util.List<Decl> decls)
      Visit the declaration name and associated types, identifiers, and functions associated with that name.
      void visitMacro​(CelMacro macro)
      Visit the CEL macro.
    • Method Detail

      • visitDecl

        void visitDecl​(java.lang.String name,
                       java.util.List<Decl> decls)
        Visit the declaration name and associated types, identifiers, and functions associated with that name.
      • visitMacro

        void visitMacro​(CelMacro macro)
        Visit the CEL macro.