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 boolean
add(E e)
Deprecated.void
clear()
Deprecated.boolean
containsAll(java.util.Collection<?> c)
Deprecated.java.util.Iterator<E>
iterator()
Deprecated.boolean
remove(java.lang.Object o)
Deprecated.boolean
removeAll(java.util.Collection<?> c)
Deprecated.boolean
retainAll(java.util.Collection<?> c)
Deprecated.int
size()
Deprecated.Methods inherited from class java.util.AbstractSet
equals, hashCode
Methods inherited from class java.util.AbstractCollection
addAll, contains, isEmpty, toArray, toArray, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface java.lang.Iterable
forEach
Methods 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.
-