net.openhft.collect.set
Interface FloatSet

All Superinterfaces:
Collection<Float>, Container, FloatCollection, Iterable<Float>, Set<Float>
All Known Subinterfaces:
HashFloatSet

public interface FloatSet
extends FloatCollection, Set<Float>

A Set specialization with float elements.

See Also:
FloatSetFactory

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

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

Specified by:
add in interface Collection<Float>
Specified by:
add in interface FloatCollection
Specified by:
add in interface Set<Float>