Class CellSet<T extends Cell>

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

@Private public class CellSet<T extends Cell> extends Object implements NavigableSet<T>
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.