Package org.apache.camel.spi
Interface Language
-
public interface Language
Represents a language to be used forExpression
orPredicate
instances
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Expression
createExpression(String expression)
Creates an expression based on the given string inputPredicate
createPredicate(String expression)
Creates a predicate based on the given string input
-
-
-
Method Detail
-
createPredicate
Predicate createPredicate(String expression)
Creates a predicate based on the given string input- Parameters:
expression
- the expression- Returns:
- the created predicate
-
createExpression
Expression createExpression(String expression)
Creates an expression based on the given string input- Parameters:
expression
- the expression as a string input- Returns:
- the created expression
-
-