Uses of Interface
org.javimmutable.collections.MutableBuilder

Packages that use MutableBuilder
org.javimmutable.collections   
org.javimmutable.collections.array.trie32   
org.javimmutable.collections.list   
org.javimmutable.collections.tree_list   
 

Uses of MutableBuilder in org.javimmutable.collections
 

Subinterfaces of MutableBuilder in org.javimmutable.collections
static interface JImmutableList.Builder<T>
           
static interface JImmutableRandomAccessList.Builder<T>
           
 

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.
<K extends T>
MutableBuilder<T,C>
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.
 

Uses of MutableBuilder in org.javimmutable.collections.array.trie32
 

Classes in org.javimmutable.collections.array.trie32 that implement MutableBuilder
static class TrieArray.Builder<T>
           
 

Uses of MutableBuilder in org.javimmutable.collections.list
 

Classes in org.javimmutable.collections.list that implement MutableBuilder
static class JImmutableArrayList.Builder<T>
           
 

Uses of MutableBuilder in org.javimmutable.collections.tree_list
 

Classes in org.javimmutable.collections.tree_list that implement MutableBuilder
static class JImmutableTreeList.Builder<T>
           
 



Copyright © 2014 Burton Computer Corporation. All rights reserved.