Uses of Interface
org.javimmutable.collections.ISetBuilder
Packages that use ISetBuilder
Package
Description
-
Uses of ISetBuilder in org.javimmutable.collections
Methods in org.javimmutable.collections that return ISetBuilderModifier 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
Classes in org.javimmutable.collections.common that implement ISetBuilderMethods in org.javimmutable.collections.common that return ISetBuilder -
Uses of ISetBuilder in org.javimmutable.collections.hash
Methods in org.javimmutable.collections.hash that return ISetBuilder -
Uses of ISetBuilder in org.javimmutable.collections.inorder
Methods in org.javimmutable.collections.inorder that return ISetBuilder -
Uses of ISetBuilder in org.javimmutable.collections.tree
Methods in org.javimmutable.collections.tree that return ISetBuilderModifier and TypeMethodDescriptionstatic <T extends Comparable<T>>
ISetBuilder<T> TreeSet.builder()
static <T> ISetBuilder
<T> TreeSet.builder
(Comparator<T> comparator)