c

org.camunda.feel.api

FeelEngineApi

class FeelEngineApi extends AnyRef

The API to interact with the FEEL engine.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FeelEngineApi
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new FeelEngineApi(engine: FeelEngine)

    engine

    the FEEL engine to interact with

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def evaluate(expression: ParsedExpression, variables: Map[String, AnyRef]): EvaluationResult

    Evaluates a parsed expression with the given context.

    Evaluates a parsed expression with the given context.

    expression

    the parsed expression to evaluate

    variables

    the variable context for the evaluation.

    returns

    the result of the evaluation as EvaluationResult

  9. def evaluate(expression: ParsedExpression, variables: Map[String, Any] = Map()): EvaluationResult

    Evaluates a parsed expression with the given context.

    Evaluates a parsed expression with the given context.

    expression

    the parsed expression to evaluate

    variables

    the variable context for the evaluation

    returns

    the result of the evaluation as EvaluationResult

  10. def evaluate(expression: ParsedExpression, context: Context): EvaluationResult

    Evaluates a parsed expression with the given context.

    Evaluates a parsed expression with the given context.

    expression

    the parsed expression to evaluate

    context

    the context for the evaluation

    returns

    the result of the evaluation as EvaluationResult

  11. def evaluateExpression(expression: String, variables: Map[String, AnyRef]): EvaluationResult

    Evaluates an FEEL expression with the given context.

    Evaluates an FEEL expression with the given context. This is a shortcut and skips the explicit parsing step before the evaluation.

    expression

    the expression to evaluate

    variables

    the variable context for the evaluation

    returns

    the result of the evaluation as EvaluationResult

  12. def evaluateExpression(expression: String, variables: Map[String, Any] = Map()): EvaluationResult

    Evaluates an FEEL expression with the given context.

    Evaluates an FEEL expression with the given context. This is a shortcut and skips the explicit parsing step before the evaluation.

    expression

    the expression to evaluate

    variables

    the variable context for the evaluation

    returns

    the result of the evaluation as EvaluationResult

  13. def evaluateExpression(expression: String, context: Context): EvaluationResult

    Evaluates an FEEL expression with the given context.

    Evaluates an FEEL expression with the given context. This is a shortcut and skips the explicit parsing step before the evaluation.

    expression

    the expression to evaluate

    context

    the context for the evaluation

    returns

    the result of the evaluation as EvaluationResult

  14. def evaluateUnaryTests(expression: String, inputValue: AnyRef, variables: Map[String, AnyRef]): EvaluationResult

    Evaluates an FEEL unary-tests expression with the given input value and context.

    Evaluates an FEEL unary-tests expression with the given input value and context. This is a shortcut and skips the explicit parsing step before the evaluation.

    expression

    the expression to evaluate

    inputValue

    the input value for the evaluation of the unary-tests

    variables

    the variable context for the evaluation

    returns

    the result of the evaluation as EvaluationResult

  15. def evaluateUnaryTests(expression: String, inputValue: Any, variables: Map[String, Any] = Map()): EvaluationResult

    Evaluates an FEEL unary-tests expression with the given input value and context.

    Evaluates an FEEL unary-tests expression with the given input value and context. This is a shortcut and skips the explicit parsing step before the evaluation.

    expression

    the expression to evaluate

    inputValue

    the input value for the evaluation of the unary-tests

    variables

    the variable context for the evaluation

    returns

    the result of the evaluation as EvaluationResult

  16. def evaluateUnaryTests(expression: String, inputValue: Any, context: Context): EvaluationResult

    Evaluates an FEEL unary-tests expression with the given input value and context.

    Evaluates an FEEL unary-tests expression with the given input value and context. This is a shortcut and skips the explicit parsing step before the evaluation.

    expression

    the expression to evaluate

    inputValue

    the input value for the evaluation of the unary-tests

    context

    the context for the evaluation

    returns

    the result of the evaluation as EvaluationResult

  17. def evaluateWithInput(expression: ParsedExpression, inputValue: Any, variables: Map[String, AnyRef]): EvaluationResult

    Evaluates a parsed unary-tests expression with the given input value and context.

    Evaluates a parsed unary-tests expression with the given input value and context.

    expression

    the parsed expression to evaluate

    inputValue

    the input value for the evaluation of the unary-tests

    variables

    the variable context for the evaluation

    returns

    the result of the evaluation as EvaluationResult

  18. def evaluateWithInput(expression: ParsedExpression, inputValue: Any, variables: Map[String, Any] = Map()): EvaluationResult

    Evaluates a parsed unary-tests expression with the given input value and context.

    Evaluates a parsed unary-tests expression with the given input value and context.

    expression

    the parsed expression to evaluate

    inputValue

    the input value for the evaluation of the unary-tests

    variables

    the variable context for the evaluation

    returns

    the result of the evaluation as EvaluationResult

  19. def evaluateWithInput(expression: ParsedExpression, inputValue: Any, context: Context): EvaluationResult

    Evaluates a parsed unary-tests expression with the given input value and context.

    Evaluates a parsed unary-tests expression with the given input value and context.

    expression

    the parsed expression to evaluate

    inputValue

    the input value for the evaluation of the unary-tests

    context

    the context for the evaluation

    returns

    the result of the evaluation as EvaluationResult

  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  26. def parseExpression(expression: String): ParseResult

    Parses an FEEL expression.

    Parses an FEEL expression.

    expression

    the expression to parse

    returns

    the result of the parsing as ParseResult

  27. def parseUnaryTests(expression: String): ParseResult

    Parses an FEEL unary-tests expression.

    Parses an FEEL unary-tests expression.

    expression

    the expression to parse

    returns

    the result of the parsing as ParseResult

  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped