Uses of Interface
dev.cel.parser.CelParser
-
Packages that use CelParser Package Description dev.cel.bundle dev.cel.compiler dev.cel.optimizer dev.cel.parser -
-
Uses of CelParser in dev.cel.bundle
Subinterfaces of CelParser in dev.cel.bundle Modifier and Type Interface Description interfaceCelCel interface for parse, type-check, and evaluation of CEL programs. -
Uses of CelParser in dev.cel.compiler
Subinterfaces of CelParser in dev.cel.compiler Modifier and Type Interface Description interfaceCelCompilerCelCompiler bundles up the common concerns for parsing and type-checking exposes additional methods for performing both operations in a single pass.Classes in dev.cel.compiler that implement CelParser Modifier and Type Class Description classCelCompilerImplCelCompiler implementation which uses either the legacy or modernized CEL-Java stack to offer a stream-lined expression parse/type-check experience, via a singlecompilemethod.Methods in dev.cel.compiler with parameters of type CelParser Modifier and Type Method Description static CelCompilerCelCompilerFactory. combine(CelParser celParser, CelChecker celChecker) -
Uses of CelParser in dev.cel.optimizer
Methods in dev.cel.optimizer with parameters of type CelParser Modifier and Type Method Description static CelOptimizerBuilderCelOptimizerFactory. standardCelOptimizerBuilder(CelParser celParser, CelChecker celChecker, CelRuntime celRuntime)Create a new builder for constructing aCelOptimizerinstance. -
Uses of CelParser in dev.cel.parser
Classes in dev.cel.parser that implement CelParser Modifier and Type Class Description classCelParserImplModernized parser implementation for CEL.Methods in dev.cel.parser that return CelParser Modifier and Type Method Description CelParserCelParserBuilder. build()Build a new instance of theCelParser.
-