Package dev.cel.common.internal
Interface EnvVisitor
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface @Internal public interface EnvVisitor
Simple API for visiting the declarations of a CEL environmentCEL 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 declarationname
and associated types, identifiers, and functions associated with that name.
-
-
-
Method Detail
-
visitDecl
void visitDecl(java.lang.String name, java.util.List<Decl> decls)
Visit the declarationname
and associated types, identifiers, and functions associated with that name.
-
-