Class AbstractImmutableSet<T>
- java.lang.Object
-
- com.kirekov.juu.collection.immutable.abstraction.AbstractImmutableSet<T>
-
- Type Parameters:
T- the type of the content
- All Implemented Interfaces:
ImmutableCollection<T>,ImmutableSet<T>,ParallelStreaming<T>,Streaming<T>,java.lang.Iterable<T>
- Direct Known Subclasses:
ImmutableHashSet,ImmutableTreeSet
public abstract class AbstractImmutableSet<T> extends java.lang.Object implements ImmutableSet<T>
Abstract immutable set.
-
-
Constructor Summary
Constructors Constructor Description AbstractImmutableSet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.kirekov.juu.collection.immutable.ImmutableCollection
allMatch, anyMatch, contains, containsAll, containsAny, equals, findFirst, findFirst, hashCode, isEmpty, isNotEmpty, max, min, noneMatch, notContains, reduce, reduce, size, toList, toMutableList, toMutableSet, toSet
-
Methods inherited from interface com.kirekov.juu.collection.immutable.ImmutableSet
concatWith, filter, flatMap, map
-
Methods inherited from interface com.kirekov.juu.collection.ParallelStreaming
parallelStream
-
-