Uses of Interface
com.jongsoft.lang.collection.Collection
-
Packages that use Collection Package Description com.jongsoft.lang.collection A purely functional based set of collection implementations based upon the Collection. -
-
Uses of Collection in com.jongsoft.lang.collection
Subinterfaces of Collection in com.jongsoft.lang.collection Modifier and Type Interface Description interface
List<T>
interface
Map<K,T>
This class represents a map implementation that is immutable.interface
Sequence<T>
Sequences are ordered collections of elements.interface
Set<T>
The set is an extension of theCollection
interface that guarantees only unique elements are contained within the set.static interface
Tree.NodeCollection<T>
The node collection is a set of tree elements each containing exactly one value.Methods in com.jongsoft.lang.collection that return Collection Modifier and Type Method Description Collection<T>
Collection. filter(java.util.function.Predicate<T> predicate)
<U> Collection<U>
Collection. map(java.util.function.Function<T,U> mapper)
Collection<T>
Collection. orElse(java.lang.Iterable<? extends T> other)
Collection<T>
Collection. orElse(java.util.function.Supplier<? extends java.lang.Iterable<? extends T>> supplier)
Collection<T>
Collection. reject(java.util.function.Predicate<T> predicate)
Collection<T>
Collection. tail()
Build a new collection with all elements except for the head.Methods in com.jongsoft.lang.collection that return types with arguments of type Collection Modifier and Type Method Description Pair<? extends Collection<T>,? extends Collection<T>>
Collection. split(java.util.function.Predicate<T> predicate)
The split operation is an execution that combines thereject(Predicate)
and thefilter(Predicate)
methods into one.Pair<? extends Collection<T>,? extends Collection<T>>
Collection. split(java.util.function.Predicate<T> predicate)
The split operation is an execution that combines thereject(Predicate)
and thefilter(Predicate)
methods into one.
-