Uses of Class
de.cuioss.tools.collect.CollectionBuilder
Packages that use CollectionBuilder
Package
Description
Provides a number of utilities in the context of
Collections
CollectionBuilder: Unified builder for
building arbitrary Collections.
CollectionLiterals: Provides
literal-forms for creating populated collection instances.-
Uses of CollectionBuilder in de.cuioss.tools.collect
Methods in de.cuioss.tools.collect that return CollectionBuilderModifier and TypeMethodDescriptionadd.final CollectionBuilder<E>add.add.CollectionBuilder.add(Collection<E> elements) add.add.add.CollectionBuilder.addNullValues(boolean addNullValues) addNullValues.CollectionBuilder.clear()Clears the elements in the collectorstatic <E> CollectionBuilder<E>CollectionBuilder.copyFrom(E source) Creates an Instance ofCollectionBuilderby copying the content of the given source Caution: The given source will be used as it is, there will be no filtering as defined withinaddNullValues(boolean)static <E> CollectionBuilder<E>CollectionBuilder.copyFrom(E... source) Creates an Instance ofCollectionBuilderby copying the content of the given source Caution: The given source will be used as it is, there will be no filtering as defined withinaddNullValues(boolean)static <E> CollectionBuilder<E>Creates an Instance ofCollectionBuilderby copying the content of the given source Caution: The given source will be used as it is, there will be no filtering as defined withinaddNullValues(boolean)static <E> CollectionBuilder<E>CollectionBuilder.copyFrom(Collection<? extends E> source) Creates an Instance ofCollectionBuilderby copying the content of the given source Caution: The given source will be used as it is, there will be no filtering as defined withinaddNullValues(boolean)static <E> CollectionBuilder<E>Creates an Instance ofCollectionBuilderby copying the content of the given source Caution: The given source will be used as it is, there will be no filtering as defined withinaddNullValues(boolean)static <E> CollectionBuilder<E>Creates an Instance ofCollectionBuilderby copying the content of the given source Caution: The given source will be used as it is, there will be no filtering as defined withinaddNullValues(boolean)CollectionBuilder.sort(Comparator<? super E> comparator) Sorts the contained Collection.