Reputation: 1
I know that {} means set and {:} means map in JEXL. And [] mean array[] and [...] means ArrayList in JEXL. But I want to change {} from set to map and [] from array to arraylist. How to do this? Thanks
Upvotes: 0
Views: 281
Reputation: 364
It should be possible to derive JexlArithmetic and overload the arrayBuilder()/setBuilder()/mapBuilder() so the respective (derived) builders create the instances as you see fit.
Upvotes: 0