Package dev.cel.compiler
Class CelCompilerFactory
- java.lang.Object
-
- dev.cel.compiler.CelCompilerFactory
-
public final class CelCompilerFactory extends java.lang.Object
Factory class for creating builders for type-checker and compiler instances.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CelCompiler
combine(CelParser celParser, CelChecker celChecker)
static CelCheckerBuilder
standardCelCheckerBuilder()
Create a new builder to construct aCelChecker
instance.static CelCompilerBuilder
standardCelCompilerBuilder()
Create a new builder to construct aCelCompiler
instance.
-
-
-
Method Detail
-
standardCelCheckerBuilder
public static CelCheckerBuilder standardCelCheckerBuilder()
Create a new builder to construct aCelChecker
instance.Note, the
CelOptions.current()
and the standard CEL function declarations are configured by default.
-
standardCelCompilerBuilder
public static CelCompilerBuilder standardCelCompilerBuilder()
Create a new builder to construct aCelCompiler
instance.Note, the
CelOptions.current()
and the standard CEL function declarations are configured by default.
-
combine
public static CelCompiler combine(CelParser celParser, CelChecker celChecker)
-
-