Methods in org.javimmutable.collections that return MutableBuilder |
MutableBuilder<T,C> |
MutableBuilder.add(Collection<? extends T> source)
Adds all values in the Collection to the values included in the collection when build() is called. |
MutableBuilder<T,C> |
MutableBuilder.add(Cursor<? extends T> source)
Adds all values in the Cursor to the values included in the collection when build() is called. |
MutableBuilder<T,C> |
MutableBuilder.add(Indexed<? extends T> source)
Adds all values in the Indexed to the values included in the collection when build() is called. |
MutableBuilder<T,C> |
MutableBuilder.add(Indexed<? extends T> source,
int offset,
int limit)
Adds all values in the specified range of Indexed to the values included in the collection when build() is called. |
MutableBuilder<T,C> |
MutableBuilder.add(Iterator<? extends T> source)
Adds all values in the Iterator to the values included in the collection when build() is called. |
|
MutableBuilder.add(K... source)
Adds all values in the array to the values included in the collection when build() is called. |
MutableBuilder<T,C> |
MutableBuilder.add(T value)
Adds the specified value to the values included in the collection when build() is called. |