Package org.apache.camel.spi
Interface ScriptingLanguage
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ScriptingLanguage
Represents aLanguage
which is a general purpose scripting languages such as groovy, joor and others.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> T
evaluate(String script, Map<String,Object> bindings, Class<T> resultType)
Evaluates the script
-