util
Interface Builders.CollectionBuilder<E,C extends Collection<?>>

Type Parameters:
E - The type of the elements.
C - The type of the collection.
All Superinterfaces:
Builders.Builder<C>
Enclosing class:
Builders

public static interface Builders.CollectionBuilder<E,C extends Collection<?>>
extends Builders.Builder<C>

The return type of Builders.buildCollection(C).

See Also:
Builders.buildCollection(C)

Method Summary
 Builders.CollectionBuilder<E,C> add(E... elems)
           
 
Methods inherited from interface util.Builders.Builder
finish
 

Method Detail

add

Builders.CollectionBuilder<E,C> add(E... elems)
Parameters:
elems - Zero or more items to add to the collection.
Returns:
this, so that calls may be chained.