net.openhft.collect.set
Interface IntSet

All Superinterfaces:
Collection<Integer>, Container, IntCollection, Iterable<Integer>, Set<Integer>
All Known Subinterfaces:
HashIntSet

public interface IntSet
extends IntCollection, Set<Integer>

A Set specialization with int elements.

See Also:
IntSetFactory

Method Summary
 boolean add(Integer e)
          Deprecated. 
 
Methods inherited from interface net.openhft.collect.IntCollection
add, contains, contains, cursor, forEach, forEachWhile, iterator, remove, removeIf, removeInt, toArray, toArray, toArray, toIntArray
 
Methods inherited from interface net.openhft.collect.Container
clear, ensureCapacity, isEmpty, shrink, size, sizeAsLong
 
Methods inherited from interface java.util.Set
addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray
 

Method Detail

add

@Deprecated
boolean add(@Nonnull
                       Integer e)
Deprecated. 

Need to override this method, because Set.add(Object) -- erasure! -- conflicts with IntCollection.add(Integer)

Specified by:
add in interface Collection<Integer>
Specified by:
add in interface IntCollection
Specified by:
add in interface Set<Integer>