Package de.bsvrz.dav.daf.util
Class MiniSet<E>
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractSet<E>
de.bsvrz.dav.daf.util.MiniSet<E>
- All Implemented Interfaces:
java.lang.Iterable<E>,java.util.Collection<E>,java.util.Set<E>
@Deprecated
public class MiniSet<E>
extends java.util.AbstractSet<E>
Deprecated.
Minimalimplementierung eines Sets. Nur geeignet für wenige Elemente.
-
Constructor Summary
Constructors Constructor Description MiniSet()Deprecated. -
Method Summary
Modifier and Type Method Description booleanadd(E e)Deprecated.voidclear()Deprecated.booleancontainsAll(java.util.Collection<?> c)Deprecated.java.util.Iterator<E>iterator()Deprecated.booleanremove(java.lang.Object o)Deprecated.booleanremoveAll(java.util.Collection<?> c)Deprecated.booleanretainAll(java.util.Collection<?> c)Deprecated.intsize()Deprecated.Methods inherited from class java.util.AbstractSet
equals, hashCodeMethods inherited from class java.util.AbstractCollection
addAll, contains, isEmpty, toArray, toArray, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArrayMethods inherited from interface java.lang.Iterable
forEachMethods inherited from interface java.util.Set
addAll, contains, isEmpty, spliterator, toArray, toArray
-
Constructor Details
-
MiniSet
public MiniSet()Deprecated.
-
-
Method Details
-
iterator
Deprecated. -
size
public int size()Deprecated. -
add
Deprecated. -
remove
public boolean remove(java.lang.Object o)Deprecated. -
removeAll
public boolean removeAll(java.util.Collection<?> c)Deprecated. -
retainAll
public boolean retainAll(java.util.Collection<?> c)Deprecated. -
containsAll
public boolean containsAll(java.util.Collection<?> c)Deprecated. -
clear
public void clear()Deprecated.
-