Class CellSet

java.lang.Object
org.apache.hadoop.hbase.regionserver.CellSet
All Implemented Interfaces:
Iterable<Cell>, Collection<Cell>, NavigableSet<Cell>, Set<Cell>, SortedSet<Cell>

@Private public class CellSet extends Object implements NavigableSet<Cell>
A Set of Cells, where an add will overwrite the entry if already exists in the set. The call to add returns true if no value in the backing map or false if there was an entry with same key (though value may be different). implementation is tolerant of concurrent get and set and won't throw ConcurrentModificationException when iterating.