Uses of Interface
org.javimmutable.collections.ISetBuilder
Package
Description
-
Uses of ISetBuilder in org.javimmutable.collections
Modifier and TypeMethodDescriptiondefault ISetBuilder
<T> Adds all values in the Collection to the values included in the collection when build() is called.default ISetBuilder
<T> Adds all values in the Iterator to the values included in the collection when build() is called.default <K extends T>
ISetBuilder<T> ISetBuilder.add
(K... source) Adds all values in the array to the values included in the collection when build() is called.default ISetBuilder
<T> Adds all values in the Indexed to the values included in the collection when build() is called.default ISetBuilder
<T> Adds all values in the specified range of Indexed to the values included in the collection when build() is called.Adds the specified value to the values included in the collection when build() is called.ISetBuilder.clear()
Removes all objects and resets the builder to it's initial post-build state.static <T> ISetBuilder
<T> ISets.hashedBuilder()
Constructs Builder object to produce unsorted sets.static <T> ISetBuilder
<T> ISets.orderedBuilder()
Constructs Builder object to produce sets that sort values based on the order they were originally added to the set.static <T extends Comparable<T>>
ISetBuilder<T> ISets.sortedBuilder()
Constructs a Builder object to produce sets that sort values in their natural sort order (using ComparableComparator).static <T> ISetBuilder
<T> ISets.sortedBuilder
(Comparator<T> comparator) Constructs a Builder object to produce sets that sort values using specified Comparator. -
Uses of ISetBuilder in org.javimmutable.collections.common
-
Uses of ISetBuilder in org.javimmutable.collections.hash
-
Uses of ISetBuilder in org.javimmutable.collections.inorder
-
Uses of ISetBuilder in org.javimmutable.collections.tree
Modifier and TypeMethodDescriptionstatic <T extends Comparable<T>>
ISetBuilder<T> TreeSet.builder()
static <T> ISetBuilder
<T> TreeSet.builder
(Comparator<T> comparator)