public interface ObjSet<E> extends ObjCollection<E>, Set<E>
Set
interface.
Methods, declared in this interface (i. e. not inherited from the superinterfaces), are present only to remove some compile-time ambiguities, they don't have any additional meaning over the specifications from superinterfaces.
ObjSetFactory
,
@KolobokeSet
Modifier and Type | Method and Description |
---|---|
ObjIterator<E> |
iterator()
Deprecated.
Instead of explicit
iterator() calls, use ObjCollection.cursor() ;
iterator() is still sensible only as a backing mechanism for Java 5's for-each
statements. |
cursor, equivalence, forEachWhile
clear, ensureCapacity, isEmpty, shrink, size, sizeAsLong
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, size, spliterator, toArray, toArray
parallelStream, removeIf, stream
@Deprecated @Nonnull ObjIterator<E> iterator()
iterator()
calls, use ObjCollection.cursor()
;
iterator()
is still sensible only as a backing mechanism for Java 5's for-each
statements.iterator
in interface Collection<E>
iterator
in interface Iterable<E>
iterator
in interface ObjCollection<E>
iterator
in interface Set<E>