net.openhft.collect.set
Interface CharSet

All Superinterfaces:
CharCollection, Collection<Character>, Container, Iterable<Character>, Set<Character>
All Known Subinterfaces:
HashCharSet

public interface CharSet
extends CharCollection, Set<Character>

A Set specialization with char elements.

See Also:
CharSetFactory

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

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

Specified by:
add in interface CharCollection
Specified by:
add in interface Collection<Character>
Specified by:
add in interface Set<Character>