Uses of Interface
org.kie.dmn.feel.lang.CompiledExpression
-
Packages that use CompiledExpression Package Description org.kie.dmn.feel org.kie.dmn.feel.codegen.feel11 org.kie.dmn.feel.lang.impl org.kie.dmn.feel.runtime.decisiontables -
-
Uses of CompiledExpression in org.kie.dmn.feel
Methods in org.kie.dmn.feel that return CompiledExpression Modifier and Type Method Description CompiledExpressionFEEL. compile(String expression, CompilerContext ctx)Compiles the string expression using the given compiler context.CompiledExpressionFEEL. compileUnaryTests(String expression, CompilerContext ctx)Compiles the string expression using the given compiler context.Methods in org.kie.dmn.feel with parameters of type CompiledExpression Modifier and Type Method Description ObjectFEEL. evaluate(CompiledExpression expression, Map<String,Object> inputVariables)Evaluates the given compiled FEEL expression using the given input variables, and returns the resultObjectFEEL. evaluate(CompiledExpression expr, EvaluationContext ctx)Evaluates the given compiled FEEL expression using the given EvaluationContext, and returns the result -
Uses of CompiledExpression in org.kie.dmn.feel.codegen.feel11
Subinterfaces of CompiledExpression in org.kie.dmn.feel.codegen.feel11 Modifier and Type Interface Description interfaceCompiledFEELExpressionClasses in org.kie.dmn.feel.codegen.feel11 that implement CompiledExpression Modifier and Type Class Description classProcessedExpressionclassProcessedFEELUnitclassProcessedUnaryTest -
Uses of CompiledExpression in org.kie.dmn.feel.lang.impl
Classes in org.kie.dmn.feel.lang.impl that implement CompiledExpression Modifier and Type Class Description classCompiledExecutableExpressionclassCompiledExpressionImplclassInterpretedExecutableExpressionclassUnaryTestInterpretedExecutableExpressionMethods in org.kie.dmn.feel.lang.impl that return CompiledExpression Modifier and Type Method Description CompiledExpressionFEELImpl. compile(String expression, CompilerContext ctx)Methods in org.kie.dmn.feel.lang.impl with parameters of type CompiledExpression Modifier and Type Method Description ObjectFEELImpl. evaluate(CompiledExpression expr, Map<String,Object> inputVariables)ObjectFEELImpl. evaluate(CompiledExpression expr, EvaluationContext ctx) -
Uses of CompiledExpression in org.kie.dmn.feel.runtime.decisiontables
Methods in org.kie.dmn.feel.runtime.decisiontables that return CompiledExpression Modifier and Type Method Description CompiledExpressionDTInputClause. getCompiledInput()Methods in org.kie.dmn.feel.runtime.decisiontables that return types with arguments of type CompiledExpression Modifier and Type Method Description List<CompiledExpression>DecisionTableImpl. getCompiledParameterNames()This is leveraged from the DMN layer, and currently unused from a pure FEEL layer perspective (DT FEEL expression deprecated anyway from the DMN spec itself).List<CompiledExpression>DTDecisionRule. getOutputEntry()A list of the instances of LiteralExpression that compose the output components of this DecisionRule.Method parameters in org.kie.dmn.feel.runtime.decisiontables with type arguments of type CompiledExpression Modifier and Type Method Description voidDecisionTableImpl. setCompiledParameterNames(List<CompiledExpression> compiledParameterNames)This is leveraged from the DMN layer, and currently unused from a pure FEEL layer perspective (DT FEEL expression deprecated anyway from the DMN spec itself).Constructors in org.kie.dmn.feel.runtime.decisiontables with parameters of type CompiledExpression Constructor Description DTInputClause(String inputExpression, String inputValuesText, List<UnaryTest> inputValues, CompiledExpression compiledInput, boolean isCollection)
-