Assuming that foo.method() can be call in a Jexl expression on java, is this possible to happen using the same api in Scala.
Asked
Active
Viewed 222 times
1 Answers
1
Scala allows to use all Java libs, Jexl isn't an exception. So you can make a call of Jexl class methods in Scala as well.
As example:
val ja = new JexlArithmetic(false);
ja.add(null, null) // 0

Alex Fruzenshtein
- 2,846
- 6
- 32
- 53