Package org.apache.commons.jexl3
Interface JexlArithmetic.ArrayBuilder
- Enclosing class:
- JexlArithmetic
public static interface JexlArithmetic.ArrayBuilder
Helper interface used when creating an array literal.
The default implementation creates an array and attempts to type it strictly.
- If all objects are of the same type, the array returned will be an array of that same type
- If all objects are Numbers, the array returned will be an array of Numbers
- If all objects are convertible to a primitive type, the array returned will be an array of the primitive type
-
Method Summary
-
Method Details
-
add
Adds a literal to the array.- Parameters:
value
- the item to add
-
create
Creates the actual "array" instance.- Parameters:
extended
- true when the last argument is ', ...'- Returns:
- the array
-