Package dev.cel.runtime.planner
Interface ActivationWrapper
-
- All Superinterfaces:
GlobalResolver
public interface ActivationWrapper extends GlobalResolver
Identifies a resolver that can be unwrapped to bypass local variable state.
-
-
Field Summary
-
Fields inherited from interface dev.cel.runtime.GlobalResolver
EMPTY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisLocallyBound(java.lang.String name)Returns true if the given name is bound by this local activation wrapper.GlobalResolverunwrap()-
Methods inherited from interface dev.cel.runtime.GlobalResolver
resolve
-
-
-
-
Method Detail
-
unwrap
GlobalResolver unwrap()
-
isLocallyBound
boolean isLocallyBound(java.lang.String name)
Returns true if the given name is bound by this local activation wrapper.
-
-