org.apache.commons.jexl3
Interface JexlArithmetic.SetBuilder

All Known Implementing Classes:
SetBuilder
Enclosing class:
JexlArithmetic

public static interface JexlArithmetic.SetBuilder

Helper interface used when creating a set literal.

The default implementation creates a java.util.HashSet.


Method Summary
 void add(Object value)
          Adds a literal to the set.
 Object create()
          Creates the actual "set" instance.
 

Method Detail

add

void add(Object value)
Adds a literal to the set.

Parameters:
value - the item to add

create

Object create()
Creates the actual "set" instance.

Returns:
the set


Copyright © 2001–2017 The Apache Software Foundation. All rights reserved.