Uses of Class
dev.cel.checker.Env
-
Packages that use Env Package Description dev.cel.checker -
-
Uses of Env in dev.cel.checker
Methods in dev.cel.checker that return Env Modifier and Type Method Description EnvEnv. add(CelIdentDecl celIdentDecl)EnvEnv. add(CelFunctionDecl celFunctionDecl)EnvEnv. add(Decl decl)Deprecated.Migrate to the CEL-Java fluent APIs and leverage the publicly available native types (e.g:CelCompilerFactoryacceptsCelFunctionDeclandCelVarDecl).EnvEnv. add(java.lang.String name, Type type)Deprecated.Migrate to the CEL-Java fluent APIs and leverage the publicly available native types (e.g:CelCompilerFactoryacceptsCelFunctionDeclandCelVarDecl).static EnvStandard. add(Env env)Adds the standard declarations of CEL to the environment.static EnvEnv. standard(Errors errors, TypeProvider typeProvider, com.google.common.collect.ImmutableSet<ExprFeatures> exprFeatures)Deprecated.usestandardwithCelOptionsinstead.static EnvEnv. standard(Errors errors, TypeProvider typeProvider, CelOptions celOptions)Creates anEnvvalue configured with the standard types, functions, and operators, configured with a customtypeProviderand a reference to thecelOptionsto use within the environment.static EnvEnv. standard(Errors errors, TypeProvider typeProvider, ExprFeatures... exprFeatures)Deprecated.usestandardwithCelOptionsinstead.static EnvEnv. standard(Errors errors, CelOptions celOptions)Creates anEnvvalue configured with the standard types, functions, and operators and a reference to the configuredcelOptions.static EnvEnv. standard(Errors errors, ExprFeatures... exprFeatures)Deprecated.usestandardwithCelOptionsinstead.static EnvEnv. unconfigured(Errors errors, TypeProvider typeProvider, com.google.common.collect.ImmutableSet<ExprFeatures> exprFeatures)Deprecated.useunconfiguredwithCelOptionsinstead.static EnvEnv. unconfigured(Errors errors, TypeProvider typeProvider, CelOptions celOptions)Creates an unconfiguredEnvvalue without the standard CEL types, functions, and operators using a customtypeProvider.static EnvEnv. unconfigured(Errors errors, TypeProvider typeProvider, ExprFeatures... exprFeatures)Deprecated.useunconfiguredwithCelOptionsinstead.static EnvEnv. unconfigured(Errors errors, CelOptions celOptions)Creates an unconfiguredEnvvalue without the standard CEL types, functions, and operators with a reference to the configuredcelOptions.static EnvEnv. unconfigured(Errors errors, ExprFeatures... exprFeatures)Deprecated.useunconfiguredwithCelOptionsinstead.Methods in dev.cel.checker with parameters of type Env Modifier and Type Method Description static EnvStandard. add(Env env)Adds the standard declarations of CEL to the environment.static CheckedExprExprChecker. check(Env env, java.lang.String inContainer, ParsedExpr parsedExpr)Deprecated.Do not use.static CelAbstractSyntaxTreeExprChecker. typecheck(Env env, java.lang.String inContainer, CelAbstractSyntaxTree ast, com.google.common.base.Optional<CelType> expectedResultType)Deprecated.Type-checks the parsed expression within the given environment and returns a checked expression.static CheckedExprExprChecker. typecheck(Env env, java.lang.String inContainer, ParsedExpr parsedExpr, com.google.common.base.Optional<Type> expectedResultType)Deprecated.Do not use.
-