blob: bc119a6478c81018230616aad53b1c676d183640 [file] [log] [blame]
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) -->
<title>CellChunkMap (Apache HBase 4.0.0-alpha-1-SNAPSHOT API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="declaration: package: org.apache.hadoop.hbase.regionserver, class: CellChunkMap">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.min.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
<script type="text/javascript" src="../../../../../script-dir/jquery-3.6.1.min.js"></script>
<script type="text/javascript" src="../../../../../script-dir/jquery-ui.min.js"></script>
</head>
<body class="class-declaration-page">
<script type="text/javascript">var evenRowColor = "even-row-color";
var oddRowColor = "odd-row-color";
var tableTab = "table-tab";
var activeTableTab = "active-table-tab";
var pathtoroot = "../../../../../";
loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<div class="flex-box">
<header role="banner" class="flex-header">
<nav role="navigation">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="top-nav" id="navbar-top">
<div class="skip-nav"><a href="#skip-navbar-top" title="Skip navigation links">Skip navigation links</a></div>
<ul id="navbar-top-firstrow" class="nav-list" title="Navigation">
<li><a href="../../../../../index.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="nav-bar-cell1-rev">Class</li>
<li><a href="class-use/CellChunkMap.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html#class">Help</a></li>
</ul>
</div>
<div class="sub-nav">
<div>
<ul class="sub-nav-list">
<li>Summary:&nbsp;</li>
<li><a href="#nested-class-summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field-summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor-summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method-summary">Method</a></li>
</ul>
<ul class="sub-nav-list">
<li>Detail:&nbsp;</li>
<li><a href="#field-detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor-detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method-detail">Method</a></li>
</ul>
</div>
<div class="nav-list-search"><label for="search-input">SEARCH:</label>
<input type="text" id="search-input" value="search" disabled="disabled">
<input type="reset" id="reset-button" value="reset" disabled="disabled">
</div>
</div>
<!-- ========= END OF TOP NAVBAR ========= -->
<span class="skip-nav" id="skip-navbar-top"></span></nav>
</header>
<div class="flex-content">
<main role="main">
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="sub-title"><span class="package-label-in-type">Package</span>&nbsp;<a href="package-summary.html">org.apache.hadoop.hbase.regionserver</a></div>
<h1 title="Class CellChunkMap" class="title">Class CellChunkMap&lt;T extends <a href="../Cell.html" title="interface in org.apache.hadoop.hbase">Cell</a>&gt;</h1>
</div>
<div class="inheritance" title="Inheritance Tree"><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">java.lang.Object</a>
<div class="inheritance"><a href="CellFlatMap.html" title="class in org.apache.hadoop.hbase.regionserver">org.apache.hadoop.hbase.regionserver.CellFlatMap</a>&lt;T&gt;
<div class="inheritance">org.apache.hadoop.hbase.regionserver.CellChunkMap&lt;T&gt;</div>
</div>
</div>
<section class="class-description" id="class-description">
<dl class="notes">
<dt>All Implemented Interfaces:</dt>
<dd><code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" class="external-link">Map</a>&lt;T,<wbr>T&gt;</code>, <code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/NavigableMap.html" title="class or interface in java.util" class="external-link">NavigableMap</a>&lt;T,<wbr>T&gt;</code>, <code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/SortedMap.html" title="class or interface in java.util" class="external-link">SortedMap</a>&lt;T,<wbr>T&gt;</code></dd>
</dl>
<hr>
<div class="type-signature"><span class="annotations">@Private
</span><span class="modifiers">public class </span><span class="element-name"><a href="../../../../../src-html/org/apache/hadoop/hbase/regionserver/CellChunkMap.html#line-53">CellChunkMap</a>&lt;T extends <a href="../Cell.html" title="interface in org.apache.hadoop.hbase">Cell</a>&gt;</span>
<span class="extends-implements">extends <a href="CellFlatMap.html" title="class in org.apache.hadoop.hbase.regionserver">CellFlatMap</a>&lt;T&gt;</span></div>
<div class="block">CellChunkMap is an array of serialized representations of Cell (pointing to Chunks with full Cell
data) and can be allocated both off-heap and on-heap.
<p>
CellChunkMap is a byte array (chunk) holding all that is needed to access a Cell, which is
actually saved on another deeper chunk. Per Cell we have a reference to this deeper byte array B
(chunk ID, integer), offset in bytes in B (integer), length in bytes in B (integer) and seqID of
the cell (long). In order to save reference to byte array we use the Chunk's ID given by
ChunkCreator.
<p>
The CellChunkMap memory layout on chunk A relevant to a deeper byte array B, holding the actual
cell data:
<pre>
&lt; header > &lt;--------------- first Cell -----------------> &lt;-- second Cell ...
--------------------------------------------------------------------------------------- ...
integer | integer | integer | integer | long |
4 bytes | 4 bytes | 4 bytes | 4 bytes | 8 bytes |
ChunkID | chunkID of | offset in B | length of | sequence | ...
of this | chunk B with | where Cell's | Cell's | ID of |
chunk A | Cell data | data starts | data in B | the Cell |
--------------------------------------------------------------------------------------- ...
</pre></div>
</section>
<section class="summary">
<ul class="summary-list">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<li>
<section class="nested-class-summary" id="nested-class-summary">
<h2>Nested Class Summary</h2>
<div class="inherited-list">
<h2 id="nested-classes-inherited-from-class-java.util.Map">Nested classes/interfaces inherited from interface&nbsp;java.util.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" class="external-link">Map</a></h2>
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.Entry.html" title="class or interface in java.util" class="external-link">Map.Entry</a>&lt;<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.Entry.html" title="class or interface in java.util" class="external-link">K</a> extends <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>,<wbr><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.Entry.html" title="class or interface in java.util" class="external-link">V</a> extends <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a>&gt;</code></div>
</section>
</li>
<!-- =========== FIELD SUMMARY =========== -->
<li>
<section class="field-summary" id="field-summary">
<h2>Field Summary</h2>
<div class="caption"><span>Fields</span></div>
<div class="summary-table three-column-summary">
<div class="table-header col-first">Modifier and Type</div>
<div class="table-header col-second">Field</div>
<div class="table-header col-last">Description</div>
<div class="col-first even-row-color"><code>private final <a href="Chunk.html" title="class in org.apache.hadoop.hbase.regionserver">Chunk</a>[]</code></div>
<div class="col-second even-row-color"><code><a href="#chunks" class="member-name-link">chunks</a></code></div>
<div class="col-last even-row-color">&nbsp;</div>
<div class="col-first odd-row-color"><code>private final int</code></div>
<div class="col-second odd-row-color"><code><a href="#numOfCellRepsInChunk" class="member-name-link">numOfCellRepsInChunk</a></code></div>
<div class="col-last odd-row-color">&nbsp;</div>
</div>
<div class="inherited-list">
<h3 id="fields-inherited-from-class-org.apache.hadoop.hbase.regionserver.CellFlatMap">Fields inherited from class&nbsp;org.apache.hadoop.hbase.regionserver.<a href="CellFlatMap.html" title="class in org.apache.hadoop.hbase.regionserver">CellFlatMap</a></h3>
<code><a href="CellFlatMap.html#maxCellIdx">maxCellIdx</a>, <a href="CellFlatMap.html#minCellIdx">minCellIdx</a></code></div>
</section>
</li>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<li>
<section class="constructor-summary" id="constructor-summary">
<h2>Constructor Summary</h2>
<div class="caption"><span>Constructors</span></div>
<div class="summary-table two-column-summary">
<div class="table-header col-first">Constructor</div>
<div class="table-header col-last">Description</div>
<div class="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E(java.util.Comparator,org.apache.hadoop.hbase.regionserver.Chunk%5B%5D,int,int,boolean)" class="member-name-link">CellChunkMap</a><wbr>(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Comparator.html" title="class or interface in java.util" class="external-link">Comparator</a>&lt;? super <a href="CellChunkMap.html" title="type parameter in CellChunkMap">T</a>&gt;&nbsp;comparator,
<a href="Chunk.html" title="class in org.apache.hadoop.hbase.regionserver">Chunk</a>[]&nbsp;chunks,
int&nbsp;min,
int&nbsp;max,
boolean&nbsp;descending)</code></div>
<div class="col-last even-row-color">
<div class="block">C-tor for creating CellChunkMap from existing Chunk array, which must be ordered (decreasingly
or increasingly according to parameter "descending")</div>
</div>
</div>
</section>
</li>
<!-- ========== METHOD SUMMARY =========== -->
<li>
<section class="method-summary" id="method-summary">
<h2>Method Summary</h2>
<div id="method-summary-table">
<div class="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabindex="0" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table', 3)" class="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab2', 3)" class="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabindex="-1" onkeydown="switchTab(event)" onclick="show('method-summary-table', 'method-summary-table-tab4', 3)" class="table-tab">Concrete Methods</button></div>
<div id="method-summary-table.tabpanel" role="tabpanel">
<div class="summary-table three-column-summary" aria-labelledby="method-summary-table-tab0">
<div class="table-header col-first">Modifier and Type</div>
<div class="table-header col-second">Method</div>
<div class="table-header col-last">Description</div>
<div class="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>protected <a href="CellFlatMap.html" title="class in org.apache.hadoop.hbase.regionserver">CellFlatMap</a>&lt;<a href="CellChunkMap.html" title="type parameter in CellChunkMap">T</a>&gt;</code></div>
<div class="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#createSubCellFlatMap(int,int,boolean)" class="member-name-link">createSubCellFlatMap</a><wbr>(int&nbsp;min,
int&nbsp;max,
boolean&nbsp;descending)</code></div>
<div class="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
<div class="block">To be used by base (CellFlatMap) class only to create a sub-CellFlatMap Should be used only to
create only CellChunkMap from CellChunkMap</div>
</div>
<div class="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>protected <a href="CellChunkMap.html" title="type parameter in CellChunkMap">T</a></code></div>
<div class="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getCell(int)" class="member-name-link">getCell</a><wbr>(int&nbsp;i)</code></div>
<div class="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">&nbsp;</div>
</div>
</div>
</div>
<div class="inherited-list">
<h3 id="methods-inherited-from-class-org.apache.hadoop.hbase.regionserver.CellFlatMap">Methods inherited from class&nbsp;org.apache.hadoop.hbase.regionserver.<a href="CellFlatMap.html" title="class in org.apache.hadoop.hbase.regionserver">CellFlatMap</a></h3>
<code><a href="CellFlatMap.html#ceilingEntry(T)">ceilingEntry</a>, <a href="CellFlatMap.html#ceilingKey(T)">ceilingKey</a>, <a href="CellFlatMap.html#clear()">clear</a>, <a href="CellFlatMap.html#comparator()">comparator</a>, <a href="CellFlatMap.html#containsKey(java.lang.Object)">containsKey</a>, <a href="CellFlatMap.html#containsValue(java.lang.Object)">containsValue</a>, <a href="CellFlatMap.html#descendingKeySet()">descendingKeySet</a>, <a href="CellFlatMap.html#descendingMap()">descendingMap</a>, <a href="CellFlatMap.html#entrySet()">entrySet</a>, <a href="CellFlatMap.html#firstEntry()">firstEntry</a>, <a href="CellFlatMap.html#firstKey()">firstKey</a>, <a href="CellFlatMap.html#floorEntry(T)">floorEntry</a>, <a href="CellFlatMap.html#floorKey(T)">floorKey</a>, <a href="CellFlatMap.html#get(java.lang.Object)">get</a>, <a href="CellFlatMap.html#headMap(T)">headMap</a>, <a href="CellFlatMap.html#headMap(T,boolean)">headMap</a>, <a href="CellFlatMap.html#higherEntry(T)">higherEntry</a>, <a href="CellFlatMap.html#higherKey(T)">higherKey</a>, <a href="CellFlatMap.html#isEmpty()">isEmpty</a>, <a href="CellFlatMap.html#keySet()">keySet</a>, <a href="CellFlatMap.html#lastEntry()">lastEntry</a>, <a href="CellFlatMap.html#lastKey()">lastKey</a>, <a href="CellFlatMap.html#lowerEntry(T)">lowerEntry</a>, <a href="CellFlatMap.html#lowerKey(T)">lowerKey</a>, <a href="CellFlatMap.html#navigableKeySet()">navigableKeySet</a>, <a href="CellFlatMap.html#pollFirstEntry()">pollFirstEntry</a>, <a href="CellFlatMap.html#pollLastEntry()">pollLastEntry</a>, <a href="CellFlatMap.html#put(T,T)">put</a>, <a href="CellFlatMap.html#putAll(java.util.Map)">putAll</a>, <a href="CellFlatMap.html#remove(java.lang.Object)">remove</a>, <a href="CellFlatMap.html#size()">size</a>, <a href="CellFlatMap.html#subMap(T,boolean,T,boolean)">subMap</a>, <a href="CellFlatMap.html#subMap(T,T)">subMap</a>, <a href="CellFlatMap.html#tailMap(T)">tailMap</a>, <a href="CellFlatMap.html#tailMap(T,boolean)">tailMap</a>, <a href="CellFlatMap.html#values()">values</a></code></div>
<div class="inherited-list">
<h3 id="methods-inherited-from-class-java.lang.Object">Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" class="external-link">Object</a></h3>
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" class="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" class="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" class="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" class="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" class="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" class="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" class="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" class="external-link">wait</a></code></div>
<div class="inherited-list">
<h3 id="methods-inherited-from-class-java.util.Map">Methods inherited from interface&nbsp;java.util.<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" class="external-link">Map</a></h3>
<code><a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html#compute(K,java.util.function.BiFunction)" title="class or interface in java.util" class="external-link">compute</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html#computeIfAbsent(K,java.util.function.Function)" title="class or interface in java.util" class="external-link">computeIfAbsent</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html#computeIfPresent(K,java.util.function.BiFunction)" title="class or interface in java.util" class="external-link">computeIfPresent</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html#equals(java.lang.Object)" title="class or interface in java.util" class="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html#forEach(java.util.function.BiConsumer)" title="class or interface in java.util" class="external-link">forEach</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html#getOrDefault(java.lang.Object,V)" title="class or interface in java.util" class="external-link">getOrDefault</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html#hashCode()" title="class or interface in java.util" class="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html#merge(K,V,java.util.function.BiFunction)" title="class or interface in java.util" class="external-link">merge</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html#putIfAbsent(K,V)" title="class or interface in java.util" class="external-link">putIfAbsent</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html#remove(java.lang.Object,java.lang.Object)" title="class or interface in java.util" class="external-link">remove</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html#replace(K,V)" title="class or interface in java.util" class="external-link">replace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html#replace(K,V,V)" title="class or interface in java.util" class="external-link">replace</a>, <a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html#replaceAll(java.util.function.BiFunction)" title="class or interface in java.util" class="external-link">replaceAll</a></code></div>
</section>
</li>
</ul>
</section>
<section class="details">
<ul class="details-list">
<!-- ============ FIELD DETAIL =========== -->
<li>
<section class="field-details" id="field-detail">
<h2>Field Details</h2>
<ul class="member-list">
<li>
<section class="detail" id="chunks">
<h3>chunks</h3>
<div class="member-signature"><span class="modifiers">private final</span>&nbsp;<span class="return-type"><a href="Chunk.html" title="class in org.apache.hadoop.hbase.regionserver">Chunk</a>[]</span>&nbsp;<span class="element-name"><a href="../../../../../src-html/org/apache/hadoop/hbase/regionserver/CellChunkMap.html#line-56">chunks</a></span></div>
</section>
</li>
<li>
<section class="detail" id="numOfCellRepsInChunk">
<h3>numOfCellRepsInChunk</h3>
<div class="member-signature"><span class="modifiers">private final</span>&nbsp;<span class="return-type">int</span>&nbsp;<span class="element-name"><a href="../../../../../src-html/org/apache/hadoop/hbase/regionserver/CellChunkMap.html#line-61">numOfCellRepsInChunk</a></span></div>
</section>
</li>
</ul>
</section>
</li>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<li>
<section class="constructor-details" id="constructor-detail">
<h2>Constructor Details</h2>
<ul class="member-list">
<li>
<section class="detail" id="&lt;init&gt;(java.util.Comparator,org.apache.hadoop.hbase.regionserver.Chunk[],int,int,boolean)">
<h3>CellChunkMap</h3>
<div class="member-signature"><span class="modifiers">public</span>&nbsp;<span class="element-name"><a href="../../../../../src-html/org/apache/hadoop/hbase/regionserver/CellChunkMap.html#line-72">CellChunkMap</a></span><wbr><span class="parameters">(<a href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Comparator.html" title="class or interface in java.util" class="external-link">Comparator</a>&lt;? super <a href="CellChunkMap.html" title="type parameter in CellChunkMap">T</a>&gt;&nbsp;comparator,
<a href="Chunk.html" title="class in org.apache.hadoop.hbase.regionserver">Chunk</a>[]&nbsp;chunks,
int&nbsp;min,
int&nbsp;max,
boolean&nbsp;descending)</span></div>
<div class="block">C-tor for creating CellChunkMap from existing Chunk array, which must be ordered (decreasingly
or increasingly according to parameter "descending")</div>
<dl class="notes">
<dt>Parameters:</dt>
<dd><code>comparator</code> - a tool for comparing cells</dd>
<dd><code>chunks</code> - ordered array of index chunk with cell representations</dd>
<dd><code>min</code> - the index of the first cell (usually 0)</dd>
<dd><code>max</code> - number of Cells or the index of the cell after the maximal cell</dd>
<dd><code>descending</code> - the order of the given array</dd>
</dl>
</section>
</li>
</ul>
</section>
</li>
<!-- ============ METHOD DETAIL ========== -->
<li>
<section class="method-details" id="method-detail">
<h2>Method Details</h2>
<ul class="member-list">
<li>
<section class="detail" id="createSubCellFlatMap(int,int,boolean)">
<h3>createSubCellFlatMap</h3>
<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="return-type"><a href="CellFlatMap.html" title="class in org.apache.hadoop.hbase.regionserver">CellFlatMap</a>&lt;<a href="CellChunkMap.html" title="type parameter in CellChunkMap">T</a>&gt;</span>&nbsp;<span class="element-name"><a href="../../../../../src-html/org/apache/hadoop/hbase/regionserver/CellChunkMap.html#line-88">createSubCellFlatMap</a></span><wbr><span class="parameters">(int&nbsp;min,
int&nbsp;max,
boolean&nbsp;descending)</span></div>
<div class="block">To be used by base (CellFlatMap) class only to create a sub-CellFlatMap Should be used only to
create only CellChunkMap from CellChunkMap</div>
<dl class="notes">
<dt>Specified by:</dt>
<dd><code><a href="CellFlatMap.html#createSubCellFlatMap(int,int,boolean)">createSubCellFlatMap</a></code>&nbsp;in class&nbsp;<code><a href="CellFlatMap.html" title="class in org.apache.hadoop.hbase.regionserver">CellFlatMap</a>&lt;<a href="CellChunkMap.html" title="type parameter in CellChunkMap">T</a> extends <a href="../Cell.html" title="interface in org.apache.hadoop.hbase">Cell</a>&gt;</code></dd>
</dl>
</section>
</li>
<li>
<section class="detail" id="getCell(int)">
<h3>getCell</h3>
<div class="member-signature"><span class="modifiers">protected</span>&nbsp;<span class="return-type"><a href="CellChunkMap.html" title="type parameter in CellChunkMap">T</a></span>&nbsp;<span class="element-name"><a href="../../../../../src-html/org/apache/hadoop/hbase/regionserver/CellChunkMap.html#line-93">getCell</a></span><wbr><span class="parameters">(int&nbsp;i)</span></div>
<dl class="notes">
<dt>Specified by:</dt>
<dd><code><a href="CellFlatMap.html#getCell(int)">getCell</a></code>&nbsp;in class&nbsp;<code><a href="CellFlatMap.html" title="class in org.apache.hadoop.hbase.regionserver">CellFlatMap</a>&lt;<a href="CellChunkMap.html" title="type parameter in CellChunkMap">T</a> extends <a href="../Cell.html" title="interface in org.apache.hadoop.hbase">Cell</a>&gt;</code></dd>
</dl>
</section>
</li>
</ul>
</section>
</li>
</ul>
</section>
<!-- ========= END OF CLASS DATA ========= -->
</main>
<footer role="contentinfo">
<hr>
<p class="legal-copy"><small>Copyright &#169; 2007&#x2013;2020 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</footer>
</div>
</div>
</body>
</html>