net.openhft.collect.set
Interface DoubleSet

All Superinterfaces:
Collection<Double>, Container, DoubleCollection, Iterable<Double>, Set<Double>
All Known Subinterfaces:
HashDoubleSet

public interface DoubleSet
extends DoubleCollection, Set<Double>

A Set specialization with double elements.

See Also:
DoubleSetFactory

Method Summary
 boolean add(Double e)
          Deprecated. 
 
Methods inherited from interface net.openhft.collect.DoubleCollection
add, contains, contains, cursor, forEach, forEachWhile, iterator, remove, removeDouble, removeIf, toArray, toArray, toArray, toDoubleArray
 
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
                       Double e)
Deprecated. 

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

Specified by:
add in interface Collection<Double>
Specified by:
add in interface DoubleCollection
Specified by:
add in interface Set<Double>