You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by md...@apache.org on 2018/10/12 20:04:58 UTC

[33/52] [partial] hbase-site git commit: HBASE-21114 Include 2.1 Release Docs

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/ec4814ee/2.1/apidocs/org/apache/hadoop/hbase/CellScanner.html
----------------------------------------------------------------------
diff --git a/2.1/apidocs/org/apache/hadoop/hbase/CellScanner.html b/2.1/apidocs/org/apache/hadoop/hbase/CellScanner.html
new file mode 100644
index 0000000..36fb304
--- /dev/null
+++ b/2.1/apidocs/org/apache/hadoop/hbase/CellScanner.html
@@ -0,0 +1,280 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<!-- NewPage -->
+<html lang="zh">
+<head>
+<!-- Generated by javadoc -->
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>CellScanner (Apache HBase 2.1.0 API)</title>
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="CellScanner (Apache HBase 2.1.0 API)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var methods = {"i0":6,"i1":6};
+var tabs = {65535:["t0","所有方法"],2:["t2","实例方法"],4:["t3","抽象方法"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+</script>
+<noscript>
+<div>您的浏览器已禁用 JavaScript。</div>
+</noscript>
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a name="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="跳过导航链接">跳过导航链接</a></div>
+<a name="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="导航">
+<li><a href="../../../../overview-summary.html">概览</a></li>
+<li><a href="package-summary.html">程序包</a></li>
+<li class="navBarCell1Rev">类</li>
+<li><a href="class-use/CellScanner.html">使用</a></li>
+<li><a href="package-tree.html">树</a></li>
+<li><a href="../../../../deprecated-list.html">已过时</a></li>
+<li><a href="../../../../index-all.html">索引</a></li>
+<li><a href="../../../../help-doc.html">帮助</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList">
+<li><a href="../../../../org/apache/hadoop/hbase/CellScannable.html" title="org.apache.hadoop.hbase中的接口"><span class="typeNameLink">上一个类</span></a></li>
+<li><a href="../../../../org/apache/hadoop/hbase/CellUtil.html" title="org.apache.hadoop.hbase中的类"><span class="typeNameLink">下一个类</span></a></li>
+</ul>
+<ul class="navList">
+<li><a href="../../../../index.html?org/apache/hadoop/hbase/CellScanner.html" target="_top">框架</a></li>
+<li><a href="CellScanner.html" target="_top">无框架</a></li>
+</ul>
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses-noframe.html">所有类</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+</div>
+<div>
+<ul class="subNavList">
+<li>概要:&nbsp;</li>
+<li>嵌套&nbsp;|&nbsp;</li>
+<li>字段&nbsp;|&nbsp;</li>
+<li>构造器&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">方法</a></li>
+</ul>
+<ul class="subNavList">
+<li>详细资料:&nbsp;</li>
+<li>字段&nbsp;|&nbsp;</li>
+<li>构造器&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">方法</a></li>
+</ul>
+</div>
+<a name="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+<!-- ======== START OF CLASS DATA ======== -->
+<div class="header">
+<div class="subTitle">org.apache.hadoop.hbase</div>
+<h2 title="接口 CellScanner" class="title">接口 CellScanner</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>所有已知子接口:</dt>
+<dd><a href="../../../../org/apache/hadoop/hbase/io/SizedCellScanner.html" title="org.apache.hadoop.hbase.io中的接口">SizedCellScanner</a></dd>
+</dl>
+<dl>
+<dt>所有已知实现类:</dt>
+<dd><a href="../../../../org/apache/hadoop/hbase/client/Result.html" title="org.apache.hadoop.hbase.client中的类">Result</a></dd>
+</dl>
+<hr>
+<br>
+<pre>@InterfaceAudience.Public
+public interface <a href="../../../../src-html/org/apache/hadoop/hbase/CellScanner.html#line.50">CellScanner</a></pre>
+<div class="block">An interface for iterating through a sequence of cells. Similar to Java's Iterator, but without
+ the hasNext() or remove() methods. The hasNext() method is problematic because it may require
+ actually loading the next object, which in turn requires storing the previous object somewhere.
+
+ <p>The core data block decoder should be as fast as possible, so we push the complexity and
+ performance expense of concurrently tracking multiple cells to layers above the CellScanner.
+ <p>
+ The <a href="../../../../org/apache/hadoop/hbase/CellScanner.html#current--"><code>current()</code></a> method will return a reference to a Cell implementation. This reference
+ may or may not point to a reusable cell implementation, so users of the CellScanner should not,
+ for example, accumulate a List of Cells. All of the references may point to the same object,
+ which would be the latest state of the underlying Cell. In short, the Cell is mutable.
+ </p>
+ Typical usage:
+
+ <pre>
+ while (scanner.advance()) {
+   Cell cell = scanner.current();
+   // do something
+ }
+ </pre>
+ <p>Often used reading <a href="../../../../org/apache/hadoop/hbase/Cell.html" title="org.apache.hadoop.hbase中的接口"><code>Cell</code></a>s written by
+ <a href="../../../../org/apache/hadoop/hbase/io/CellOutputStream.html" title="org.apache.hadoop.hbase.io中的接口"><code>CellOutputStream</code></a>.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<ul class="blockList">
+<li class="blockList"><a name="method.summary">
+<!--   -->
+</a>
+<h3>方法概要</h3>
+<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
+<caption><span id="t0" class="activeTableTab"><span>所有方法</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">实例方法</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">抽象方法</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">限定符和类型</th>
+<th class="colLast" scope="col">方法和说明</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/hadoop/hbase/CellScanner.html#advance--">advance</a></span>()</code>
+<div class="block">Advance the scanner 1 cell.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../../../org/apache/hadoop/hbase/Cell.html" title="org.apache.hadoop.hbase中的接口">Cell</a></code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/hadoop/hbase/CellScanner.html#current--">current</a></span>()</code>&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<ul class="blockList">
+<li class="blockList"><a name="method.detail">
+<!--   -->
+</a>
+<h3>方法详细资料</h3>
+<a name="current--">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>current</h4>
+<pre><a href="../../../../org/apache/hadoop/hbase/Cell.html" title="org.apache.hadoop.hbase中的接口">Cell</a>&nbsp;<a href="../../../../src-html/org/apache/hadoop/hbase/CellScanner.html#line.54">current</a>()</pre>
+<dl>
+<dt><span class="returnLabel">返回:</span></dt>
+<dd>the current Cell which may be mutable</dd>
+</dl>
+</li>
+</ul>
+<a name="advance--">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>advance</h4>
+<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/hadoop/hbase/CellScanner.html#line.61">advance</a>()
+         throws <a href="https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="java.io中的类或接口">IOException</a></pre>
+<div class="block">Advance the scanner 1 cell.</div>
+<dl>
+<dt><span class="returnLabel">返回:</span></dt>
+<dd>true if the next cell is found and <a href="../../../../org/apache/hadoop/hbase/CellScanner.html#current--"><code>current()</code></a> will return a valid Cell</dd>
+<dt><span class="throwsLabel">抛出:</span></dt>
+<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="java.io中的类或接口">IOException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</div>
+</div>
+<!-- ========= END OF CLASS DATA ========= -->
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a name="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="跳过导航链接">跳过导航链接</a></div>
+<a name="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="导航">
+<li><a href="../../../../overview-summary.html">概览</a></li>
+<li><a href="package-summary.html">程序包</a></li>
+<li class="navBarCell1Rev">类</li>
+<li><a href="class-use/CellScanner.html">使用</a></li>
+<li><a href="package-tree.html">树</a></li>
+<li><a href="../../../../deprecated-list.html">已过时</a></li>
+<li><a href="../../../../index-all.html">索引</a></li>
+<li><a href="../../../../help-doc.html">帮助</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList">
+<li><a href="../../../../org/apache/hadoop/hbase/CellScannable.html" title="org.apache.hadoop.hbase中的接口"><span class="typeNameLink">上一个类</span></a></li>
+<li><a href="../../../../org/apache/hadoop/hbase/CellUtil.html" title="org.apache.hadoop.hbase中的类"><span class="typeNameLink">下一个类</span></a></li>
+</ul>
+<ul class="navList">
+<li><a href="../../../../index.html?org/apache/hadoop/hbase/CellScanner.html" target="_top">框架</a></li>
+<li><a href="CellScanner.html" target="_top">无框架</a></li>
+</ul>
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses-noframe.html">所有类</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+</div>
+<div>
+<ul class="subNavList">
+<li>概要:&nbsp;</li>
+<li>嵌套&nbsp;|&nbsp;</li>
+<li>字段&nbsp;|&nbsp;</li>
+<li>构造器&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">方法</a></li>
+</ul>
+<ul class="subNavList">
+<li>详细资料:&nbsp;</li>
+<li>字段&nbsp;|&nbsp;</li>
+<li>构造器&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">方法</a></li>
+</ul>
+</div>
+<a name="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+<p class="legalCopy"><small>Copyright &#169; 2007&#x2013;2018 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
+</body>
+</html>