http://git-wip-us.apache.org/repos/asf/accumulo/blob/823e2294/1.4/apidocs/org/apache/accumulo/core/data/Mutation.html ---------------------------------------------------------------------- diff --git a/1.4/apidocs/org/apache/accumulo/core/data/Mutation.html b/1.4/apidocs/org/apache/accumulo/core/data/Mutation.html new file mode 100644 index 0000000..a1c1cc6 --- /dev/null +++ b/1.4/apidocs/org/apache/accumulo/core/data/Mutation.html @@ -0,0 +1,842 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!-- NewPage --> +<html lang="en"> +<head> +<!-- Generated by javadoc (version 1.7.0_95) on Thu Mar 03 19:53:24 EST 2016 --> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> +<title>Mutation (accumulo 1.4.5 API)</title> +<meta name="date" content="2016-03-03"> +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> +</head> +<body> +<script type="text/javascript"><!-- + if (location.href.indexOf('is-external=true') == -1) { + parent.document.title="Mutation (accumulo 1.4.5 API)"; + } +//--> +</script> +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<!-- ========= START OF TOP NAVBAR ======= --> +<div class="topNav"><a name="navbar_top"> +<!-- --> +</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="class-use/Mutation.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">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li><a href="../../../../../org/apache/accumulo/core/data/KeyValue.html" title="class in org.apache.accumulo.core.data"><span class="strong">Prev Class</span></a></li> +<li><a href="../../../../../org/apache/accumulo/core/data/PartialKey.html" title="enum in org.apache.accumulo.core.data"><span class="strong">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../../../index.html?org/apache/accumulo/core/data/Mutation.html" target="_top">Frames</a></li> +<li><a href="Mutation.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_top"> +<li><a href="../../../../../allclasses-noframe.html">All Classes</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>Summary: </li> +<li>Nested | </li> +<li>Field | </li> +<li><a href="#constructor_summary">Constr</a> | </li> +<li><a href="#method_summary">Method</a></li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li>Field | </li> +<li><a href="#constructor_detail">Constr</a> | </li> +<li><a href="#method_detail">Method</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.accumulo.core.data</div> +<h2 title="Class Mutation" class="title">Class Mutation</h2> +</div> +<div class="contentContainer"> +<ul class="inheritance"> +<li><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li> +<li> +<ul class="inheritance"> +<li>org.apache.accumulo.core.data.Mutation</li> +</ul> +</li> +</ul> +<div class="description"> +<ul class="blockList"> +<li class="blockList"> +<dl> +<dt>All Implemented Interfaces:</dt> +<dd>org.apache.hadoop.io.Writable</dd> +</dl> +<hr> +<br> +<pre>public class <span class="strong">Mutation</span> +extends <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> +implements org.apache.hadoop.io.Writable</pre> +<div class="block"><p> + Mutation represents an action that manipulates a row in a table. A mutation holds a list of column/value pairs that represent an atomic set of modifications + to make to a row. + + <p> + Convenience methods which takes columns and value as CharSequence (String implements CharSequence) are provided. CharSequence is converted to UTF-8 by + constructing a new Text object. + + <p> + When always passing in the same data as a CharSequence/String, its probably more efficient to call the Text put methods. This way the data is only encoded + once and only one Text object is created. + + <p> + All of the put methods append data to the mutation, they do not overwrite anything that was previously put. The mutation holds a list of all column/values + that were put into it. The putDelete() methods do not remove something that was previously added to the mutation, rather they indicate that Accumulo should + insert a delete marker for that row column.</div> +</li> +</ul> +</div> +<div class="summary"> +<ul class="blockList"> +<li class="blockList"> +<!-- ======== CONSTRUCTOR SUMMARY ======== --> +<ul class="blockList"> +<li class="blockList"><a name="constructor_summary"> +<!-- --> +</a> +<h3>Constructor Summary</h3> +<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> +<caption><span>Constructors</span><span class="tabEnd"> </span></caption> +<tr> +<th class="colOne" scope="col">Constructor and Description</th> +</tr> +<tr class="altColor"> +<td class="colOne"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#Mutation()">Mutation</a></strong>()</code> </td> +</tr> +<tr class="rowColor"> +<td class="colOne"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#Mutation(java.lang.CharSequence)">Mutation</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> row)</code> </td> +</tr> +<tr class="altColor"> +<td class="colOne"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#Mutation(org.apache.accumulo.core.data.Mutation)">Mutation</a></strong>(<a href="../../../../../org/apache/accumulo/core/data/Mutation.html" title="class in org.apache.accumulo.core.data">Mutation</a> m)</code> </td> +</tr> +<tr class="rowColor"> +<td class="colOne"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#Mutation(org.apache.hadoop.io.Text)">Mutation</a></strong>(org.apache.hadoop.io.Text row)</code> </td> +</tr> +<tr class="altColor"> +<td class="colOne"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#Mutation(org.apache.accumulo.core.data.thrift.TMutation)">Mutation</a></strong>(org.apache.accumulo.core.data.thrift.TMutation tmutation)</code> </td> +</tr> +</table> +</li> +</ul> +<!-- ========== METHOD SUMMARY =========== --> +<ul class="blockList"> +<li class="blockList"><a name="method_summary"> +<!-- --> +</a> +<h3>Method Summary</h3> +<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> +<caption><span>Methods</span><span class="tabEnd"> </span></caption> +<tr> +<th class="colFirst" scope="col">Modifier and Type</th> +<th class="colLast" scope="col">Method and Description</th> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>boolean</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#equals(org.apache.accumulo.core.data.Mutation)">equals</a></strong>(<a href="../../../../../org/apache/accumulo/core/data/Mutation.html" title="class in org.apache.accumulo.core.data">Mutation</a> m)</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>boolean</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#equals(java.lang.Object)">equals</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> o)</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>long</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#estimatedMemoryUsed()">estimatedMemoryUsed</a></strong>()</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>byte[]</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#getRow()">getRow</a></strong>()</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code><a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="../../../../../org/apache/accumulo/core/data/ColumnUpdate.html" title="class in org.apache.accumulo.core.data">ColumnUpdate</a>></code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#getUpdates()">getUpdates</a></strong>()</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>int</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#hashCode()">hashCode</a></strong>()</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>long</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#numBytes()">numBytes</a></strong>()</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#put(java.lang.CharSequence,%20java.lang.CharSequence,%20java.lang.CharSequence)">put</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> value)</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#put(java.lang.CharSequence,%20java.lang.CharSequence,%20org.apache.accumulo.core.security.ColumnVisibility,%20java.lang.CharSequence)">put</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> value)</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#put(java.lang.CharSequence,%20java.lang.CharSequence,%20org.apache.accumulo.core.security.ColumnVisibility,%20long,%20java.lang.CharSequence)">put</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility, + long timestamp, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> value)</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#put(java.lang.CharSequence,%20java.lang.CharSequence,%20org.apache.accumulo.core.security.ColumnVisibility,%20long,%20org.apache.accumulo.core.data.Value)">put</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility, + long timestamp, + <a href="../../../../../org/apache/accumulo/core/data/Value.html" title="class in org.apache.accumulo.core.data">Value</a> value)</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#put(java.lang.CharSequence,%20java.lang.CharSequence,%20org.apache.accumulo.core.security.ColumnVisibility,%20org.apache.accumulo.core.data.Value)">put</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility, + <a href="../../../../../org/apache/accumulo/core/data/Value.html" title="class in org.apache.accumulo.core.data">Value</a> value)</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#put(java.lang.CharSequence,%20java.lang.CharSequence,%20long,%20java.lang.CharSequence)">put</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + long timestamp, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> value)</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#put(java.lang.CharSequence,%20java.lang.CharSequence,%20long,%20org.apache.accumulo.core.data.Value)">put</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + long timestamp, + <a href="../../../../../org/apache/accumulo/core/data/Value.html" title="class in org.apache.accumulo.core.data">Value</a> value)</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#put(java.lang.CharSequence,%20java.lang.CharSequence,%20org.apache.accumulo.core.data.Value)">put</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + <a href="../../../../../org/apache/accumulo/core/data/Value.html" title="class in org.apache.accumulo.core.data">Value</a> value)</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#put(org.apache.hadoop.io.Text,%20org.apache.hadoop.io.Text,%20org.apache.accumulo.core.security.ColumnVisibility,%20long,%20org.apache.accumulo.core.data.Value)">put</a></strong>(org.apache.hadoop.io.Text columnFamily, + org.apache.hadoop.io.Text columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility, + long timestamp, + <a href="../../../../../org/apache/accumulo/core/data/Value.html" title="class in org.apache.accumulo.core.data">Value</a> value)</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#put(org.apache.hadoop.io.Text,%20org.apache.hadoop.io.Text,%20org.apache.accumulo.core.security.ColumnVisibility,%20org.apache.accumulo.core.data.Value)">put</a></strong>(org.apache.hadoop.io.Text columnFamily, + org.apache.hadoop.io.Text columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility, + <a href="../../../../../org/apache/accumulo/core/data/Value.html" title="class in org.apache.accumulo.core.data">Value</a> value)</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#put(org.apache.hadoop.io.Text,%20org.apache.hadoop.io.Text,%20long,%20org.apache.accumulo.core.data.Value)">put</a></strong>(org.apache.hadoop.io.Text columnFamily, + org.apache.hadoop.io.Text columnQualifier, + long timestamp, + <a href="../../../../../org/apache/accumulo/core/data/Value.html" title="class in org.apache.accumulo.core.data">Value</a> value)</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#put(org.apache.hadoop.io.Text,%20org.apache.hadoop.io.Text,%20org.apache.accumulo.core.data.Value)">put</a></strong>(org.apache.hadoop.io.Text columnFamily, + org.apache.hadoop.io.Text columnQualifier, + <a href="../../../../../org/apache/accumulo/core/data/Value.html" title="class in org.apache.accumulo.core.data">Value</a> value)</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#putDelete(java.lang.CharSequence,%20java.lang.CharSequence)">putDelete</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier)</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#putDelete(java.lang.CharSequence,%20java.lang.CharSequence,%20org.apache.accumulo.core.security.ColumnVisibility)">putDelete</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility)</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#putDelete(java.lang.CharSequence,%20java.lang.CharSequence,%20org.apache.accumulo.core.security.ColumnVisibility,%20long)">putDelete</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility, + long timestamp)</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#putDelete(java.lang.CharSequence,%20java.lang.CharSequence,%20long)">putDelete</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + long timestamp)</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#putDelete(org.apache.hadoop.io.Text,%20org.apache.hadoop.io.Text)">putDelete</a></strong>(org.apache.hadoop.io.Text columnFamily, + org.apache.hadoop.io.Text columnQualifier)</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#putDelete(org.apache.hadoop.io.Text,%20org.apache.hadoop.io.Text,%20org.apache.accumulo.core.security.ColumnVisibility)">putDelete</a></strong>(org.apache.hadoop.io.Text columnFamily, + org.apache.hadoop.io.Text columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility)</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#putDelete(org.apache.hadoop.io.Text,%20org.apache.hadoop.io.Text,%20org.apache.accumulo.core.security.ColumnVisibility,%20long)">putDelete</a></strong>(org.apache.hadoop.io.Text columnFamily, + org.apache.hadoop.io.Text columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility, + long timestamp)</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#putDelete(org.apache.hadoop.io.Text,%20org.apache.hadoop.io.Text,%20long)">putDelete</a></strong>(org.apache.hadoop.io.Text columnFamily, + org.apache.hadoop.io.Text columnQualifier, + long timestamp)</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#readFields(java.io.DataInput)">readFields</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/io/DataInput.html?is-external=true" title="class or interface in java.io">DataInput</a> in)</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>int</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#size()">size</a></strong>()</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>org.apache.accumulo.core.data.thrift.TMutation</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#toThrift()">toThrift</a></strong>()</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/Mutation.html#write(java.io.DataOutput)">write</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/io/DataOutput.html?is-external=true" title="class or interface in java.io">DataOutput</a> out)</code> </td> +</tr> +</table> +<ul class="blockList"> +<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> +<!-- --> +</a> +<h3>Methods inherited from class java.lang.<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3> +<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.ht ml?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)" title="class or interface in java.lang">wait</a></code></li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +<div class="details"> +<ul class="blockList"> +<li class="blockList"> +<!-- ========= CONSTRUCTOR DETAIL ======== --> +<ul class="blockList"> +<li class="blockList"><a name="constructor_detail"> +<!-- --> +</a> +<h3>Constructor Detail</h3> +<a name="Mutation(org.apache.hadoop.io.Text)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>Mutation</h4> +<pre>public Mutation(org.apache.hadoop.io.Text row)</pre> +</li> +</ul> +<a name="Mutation(java.lang.CharSequence)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>Mutation</h4> +<pre>public Mutation(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> row)</pre> +</li> +</ul> +<a name="Mutation()"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>Mutation</h4> +<pre>public Mutation()</pre> +</li> +</ul> +<a name="Mutation(org.apache.accumulo.core.data.thrift.TMutation)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>Mutation</h4> +<pre>public Mutation(org.apache.accumulo.core.data.thrift.TMutation tmutation)</pre> +</li> +</ul> +<a name="Mutation(org.apache.accumulo.core.data.Mutation)"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>Mutation</h4> +<pre>public Mutation(<a href="../../../../../org/apache/accumulo/core/data/Mutation.html" title="class in org.apache.accumulo.core.data">Mutation</a> m)</pre> +</li> +</ul> +</li> +</ul> +<!-- ============ METHOD DETAIL ========== --> +<ul class="blockList"> +<li class="blockList"><a name="method_detail"> +<!-- --> +</a> +<h3>Method Detail</h3> +<a name="getRow()"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>getRow</h4> +<pre>public byte[] getRow()</pre> +</li> +</ul> +<a name="put(org.apache.hadoop.io.Text, org.apache.hadoop.io.Text, org.apache.accumulo.core.data.Value)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>put</h4> +<pre>public void put(org.apache.hadoop.io.Text columnFamily, + org.apache.hadoop.io.Text columnQualifier, + <a href="../../../../../org/apache/accumulo/core/data/Value.html" title="class in org.apache.accumulo.core.data">Value</a> value)</pre> +</li> +</ul> +<a name="put(org.apache.hadoop.io.Text, org.apache.hadoop.io.Text, org.apache.accumulo.core.security.ColumnVisibility, org.apache.accumulo.core.data.Value)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>put</h4> +<pre>public void put(org.apache.hadoop.io.Text columnFamily, + org.apache.hadoop.io.Text columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility, + <a href="../../../../../org/apache/accumulo/core/data/Value.html" title="class in org.apache.accumulo.core.data">Value</a> value)</pre> +</li> +</ul> +<a name="put(org.apache.hadoop.io.Text, org.apache.hadoop.io.Text, long, org.apache.accumulo.core.data.Value)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>put</h4> +<pre>public void put(org.apache.hadoop.io.Text columnFamily, + org.apache.hadoop.io.Text columnQualifier, + long timestamp, + <a href="../../../../../org/apache/accumulo/core/data/Value.html" title="class in org.apache.accumulo.core.data">Value</a> value)</pre> +</li> +</ul> +<a name="put(org.apache.hadoop.io.Text, org.apache.hadoop.io.Text, org.apache.accumulo.core.security.ColumnVisibility, long, org.apache.accumulo.core.data.Value)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>put</h4> +<pre>public void put(org.apache.hadoop.io.Text columnFamily, + org.apache.hadoop.io.Text columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility, + long timestamp, + <a href="../../../../../org/apache/accumulo/core/data/Value.html" title="class in org.apache.accumulo.core.data">Value</a> value)</pre> +</li> +</ul> +<a name="putDelete(org.apache.hadoop.io.Text, org.apache.hadoop.io.Text)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>putDelete</h4> +<pre>public void putDelete(org.apache.hadoop.io.Text columnFamily, + org.apache.hadoop.io.Text columnQualifier)</pre> +</li> +</ul> +<a name="putDelete(org.apache.hadoop.io.Text, org.apache.hadoop.io.Text, org.apache.accumulo.core.security.ColumnVisibility)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>putDelete</h4> +<pre>public void putDelete(org.apache.hadoop.io.Text columnFamily, + org.apache.hadoop.io.Text columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility)</pre> +</li> +</ul> +<a name="putDelete(org.apache.hadoop.io.Text, org.apache.hadoop.io.Text, long)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>putDelete</h4> +<pre>public void putDelete(org.apache.hadoop.io.Text columnFamily, + org.apache.hadoop.io.Text columnQualifier, + long timestamp)</pre> +</li> +</ul> +<a name="putDelete(org.apache.hadoop.io.Text, org.apache.hadoop.io.Text, org.apache.accumulo.core.security.ColumnVisibility, long)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>putDelete</h4> +<pre>public void putDelete(org.apache.hadoop.io.Text columnFamily, + org.apache.hadoop.io.Text columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility, + long timestamp)</pre> +</li> +</ul> +<a name="put(java.lang.CharSequence, java.lang.CharSequence, org.apache.accumulo.core.data.Value)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>put</h4> +<pre>public void put(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + <a href="../../../../../org/apache/accumulo/core/data/Value.html" title="class in org.apache.accumulo.core.data">Value</a> value)</pre> +</li> +</ul> +<a name="put(java.lang.CharSequence, java.lang.CharSequence, org.apache.accumulo.core.security.ColumnVisibility, org.apache.accumulo.core.data.Value)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>put</h4> +<pre>public void put(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility, + <a href="../../../../../org/apache/accumulo/core/data/Value.html" title="class in org.apache.accumulo.core.data">Value</a> value)</pre> +</li> +</ul> +<a name="put(java.lang.CharSequence, java.lang.CharSequence, long, org.apache.accumulo.core.data.Value)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>put</h4> +<pre>public void put(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + long timestamp, + <a href="../../../../../org/apache/accumulo/core/data/Value.html" title="class in org.apache.accumulo.core.data">Value</a> value)</pre> +</li> +</ul> +<a name="put(java.lang.CharSequence, java.lang.CharSequence, org.apache.accumulo.core.security.ColumnVisibility, long, org.apache.accumulo.core.data.Value)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>put</h4> +<pre>public void put(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility, + long timestamp, + <a href="../../../../../org/apache/accumulo/core/data/Value.html" title="class in org.apache.accumulo.core.data">Value</a> value)</pre> +</li> +</ul> +<a name="putDelete(java.lang.CharSequence, java.lang.CharSequence)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>putDelete</h4> +<pre>public void putDelete(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier)</pre> +</li> +</ul> +<a name="putDelete(java.lang.CharSequence, java.lang.CharSequence, org.apache.accumulo.core.security.ColumnVisibility)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>putDelete</h4> +<pre>public void putDelete(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility)</pre> +</li> +</ul> +<a name="putDelete(java.lang.CharSequence, java.lang.CharSequence, long)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>putDelete</h4> +<pre>public void putDelete(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + long timestamp)</pre> +</li> +</ul> +<a name="putDelete(java.lang.CharSequence, java.lang.CharSequence, org.apache.accumulo.core.security.ColumnVisibility, long)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>putDelete</h4> +<pre>public void putDelete(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility, + long timestamp)</pre> +</li> +</ul> +<a name="put(java.lang.CharSequence, java.lang.CharSequence, java.lang.CharSequence)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>put</h4> +<pre>public void put(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> value)</pre> +</li> +</ul> +<a name="put(java.lang.CharSequence, java.lang.CharSequence, org.apache.accumulo.core.security.ColumnVisibility, java.lang.CharSequence)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>put</h4> +<pre>public void put(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> value)</pre> +</li> +</ul> +<a name="put(java.lang.CharSequence, java.lang.CharSequence, long, java.lang.CharSequence)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>put</h4> +<pre>public void put(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + long timestamp, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> value)</pre> +</li> +</ul> +<a name="put(java.lang.CharSequence, java.lang.CharSequence, org.apache.accumulo.core.security.ColumnVisibility, long, java.lang.CharSequence)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>put</h4> +<pre>public void put(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnFamily, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> columnQualifier, + <a href="../../../../../org/apache/accumulo/core/security/ColumnVisibility.html" title="class in org.apache.accumulo.core.security">ColumnVisibility</a> columnVisibility, + long timestamp, + <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/CharSequence.html?is-external=true" title="class or interface in java.lang">CharSequence</a> value)</pre> +</li> +</ul> +<a name="getUpdates()"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>getUpdates</h4> +<pre>public <a href="http://docs.oracle.com/javase/6/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a><<a href="../../../../../org/apache/accumulo/core/data/ColumnUpdate.html" title="class in org.apache.accumulo.core.data">ColumnUpdate</a>> getUpdates()</pre> +</li> +</ul> +<a name="numBytes()"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>numBytes</h4> +<pre>public long numBytes()</pre> +</li> +</ul> +<a name="estimatedMemoryUsed()"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>estimatedMemoryUsed</h4> +<pre>public long estimatedMemoryUsed()</pre> +</li> +</ul> +<a name="size()"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>size</h4> +<pre>public int size()</pre> +<dl><dt><span class="strong">Returns:</span></dt><dd>the number of column value pairs added to the mutation</dd></dl> +</li> +</ul> +<a name="readFields(java.io.DataInput)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>readFields</h4> +<pre>public void readFields(<a href="http://docs.oracle.com/javase/6/docs/api/java/io/DataInput.html?is-external=true" title="class or interface in java.io">DataInput</a> in) + throws <a href="http://docs.oracle.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre> +<dl> +<dt><strong>Specified by:</strong></dt> +<dd><code>readFields</code> in interface <code>org.apache.hadoop.io.Writable</code></dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code></dd></dl> +</li> +</ul> +<a name="write(java.io.DataOutput)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>write</h4> +<pre>public void write(<a href="http://docs.oracle.com/javase/6/docs/api/java/io/DataOutput.html?is-external=true" title="class or interface in java.io">DataOutput</a> out) + throws <a href="http://docs.oracle.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></pre> +<dl> +<dt><strong>Specified by:</strong></dt> +<dd><code>write</code> in interface <code>org.apache.hadoop.io.Writable</code></dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code></dd></dl> +</li> +</ul> +<a name="equals(java.lang.Object)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>equals</h4> +<pre>public boolean equals(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a> o)</pre> +<dl> +<dt><strong>Overrides:</strong></dt> +<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a></code> in class <code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd> +</dl> +</li> +</ul> +<a name="hashCode()"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>hashCode</h4> +<pre>public int hashCode()</pre> +<dl> +<dt><strong>Overrides:</strong></dt> +<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a></code> in class <code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd> +</dl> +</li> +</ul> +<a name="equals(org.apache.accumulo.core.data.Mutation)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>equals</h4> +<pre>public boolean equals(<a href="../../../../../org/apache/accumulo/core/data/Mutation.html" title="class in org.apache.accumulo.core.data">Mutation</a> m)</pre> +</li> +</ul> +<a name="toThrift()"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>toThrift</h4> +<pre>public org.apache.accumulo.core.data.thrift.TMutation toThrift()</pre> +</li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +</div> +<!-- ========= END OF CLASS DATA ========= --> +<!-- ======= START OF BOTTOM NAVBAR ====== --> +<div class="bottomNav"><a name="navbar_bottom"> +<!-- --> +</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="class-use/Mutation.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">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li><a href="../../../../../org/apache/accumulo/core/data/KeyValue.html" title="class in org.apache.accumulo.core.data"><span class="strong">Prev Class</span></a></li> +<li><a href="../../../../../org/apache/accumulo/core/data/PartialKey.html" title="enum in org.apache.accumulo.core.data"><span class="strong">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../../../index.html?org/apache/accumulo/core/data/Mutation.html" target="_top">Frames</a></li> +<li><a href="Mutation.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_bottom"> +<li><a href="../../../../../allclasses-noframe.html">All Classes</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>Summary: </li> +<li>Nested | </li> +<li>Field | </li> +<li><a href="#constructor_summary">Constr</a> | </li> +<li><a href="#method_summary">Method</a></li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li>Field | </li> +<li><a href="#constructor_detail">Constr</a> | </li> +<li><a href="#method_detail">Method</a></li> +</ul> +</div> +<a name="skip-navbar_bottom"> +<!-- --> +</a></div> +<!-- ======== END OF BOTTOM NAVBAR ======= --> +<p class="legalCopy"><small>Copyright © 2016 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.</small></p> +</body> +</html>
http://git-wip-us.apache.org/repos/asf/accumulo/blob/823e2294/1.4/apidocs/org/apache/accumulo/core/data/PartialKey.html ---------------------------------------------------------------------- diff --git a/1.4/apidocs/org/apache/accumulo/core/data/PartialKey.html b/1.4/apidocs/org/apache/accumulo/core/data/PartialKey.html new file mode 100644 index 0000000..c1f7040 --- /dev/null +++ b/1.4/apidocs/org/apache/accumulo/core/data/PartialKey.html @@ -0,0 +1,395 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!-- NewPage --> +<html lang="en"> +<head> +<!-- Generated by javadoc (version 1.7.0_95) on Thu Mar 03 19:53:24 EST 2016 --> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> +<title>PartialKey (accumulo 1.4.5 API)</title> +<meta name="date" content="2016-03-03"> +<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> +</head> +<body> +<script type="text/javascript"><!-- + if (location.href.indexOf('is-external=true') == -1) { + parent.document.title="PartialKey (accumulo 1.4.5 API)"; + } +//--> +</script> +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<!-- ========= START OF TOP NAVBAR ======= --> +<div class="topNav"><a name="navbar_top"> +<!-- --> +</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="class-use/PartialKey.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">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li><a href="../../../../../org/apache/accumulo/core/data/Mutation.html" title="class in org.apache.accumulo.core.data"><span class="strong">Prev Class</span></a></li> +<li><a href="../../../../../org/apache/accumulo/core/data/Range.html" title="class in org.apache.accumulo.core.data"><span class="strong">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../../../index.html?org/apache/accumulo/core/data/PartialKey.html" target="_top">Frames</a></li> +<li><a href="PartialKey.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_top"> +<li><a href="../../../../../allclasses-noframe.html">All Classes</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>Summary: </li> +<li>Nested | </li> +<li><a href="#enum_constant_summary">Enum Constants</a> | </li> +<li>Field | </li> +<li><a href="#method_summary">Method</a></li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li><a href="#enum_constant_detail">Enum Constants</a> | </li> +<li>Field | </li> +<li><a href="#method_detail">Method</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.accumulo.core.data</div> +<h2 title="Enum PartialKey" class="title">Enum PartialKey</h2> +</div> +<div class="contentContainer"> +<ul class="inheritance"> +<li><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li> +<li> +<ul class="inheritance"> +<li><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">java.lang.Enum</a><<a href="../../../../../org/apache/accumulo/core/data/PartialKey.html" title="enum in org.apache.accumulo.core.data">PartialKey</a>></li> +<li> +<ul class="inheritance"> +<li>org.apache.accumulo.core.data.PartialKey</li> +</ul> +</li> +</ul> +</li> +</ul> +<div class="description"> +<ul class="blockList"> +<li class="blockList"> +<dl> +<dt>All Implemented Interfaces:</dt> +<dd><a href="http://docs.oracle.com/javase/6/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a><<a href="../../../../../org/apache/accumulo/core/data/PartialKey.html" title="enum in org.apache.accumulo.core.data">PartialKey</a>></dd> +</dl> +<hr> +<br> +<pre>public enum <span class="strong">PartialKey</span> +extends <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">Enum</a><<a href="../../../../../org/apache/accumulo/core/data/PartialKey.html" title="enum in org.apache.accumulo.core.data">PartialKey</a>></pre> +</li> +</ul> +</div> +<div class="summary"> +<ul class="blockList"> +<li class="blockList"> +<!-- =========== ENUM CONSTANT SUMMARY =========== --> +<ul class="blockList"> +<li class="blockList"><a name="enum_constant_summary"> +<!-- --> +</a> +<h3>Enum Constant Summary</h3> +<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Constant Summary table, listing enum constants, and an explanation"> +<caption><span>Enum Constants</span><span class="tabEnd"> </span></caption> +<tr> +<th class="colOne" scope="col">Enum Constant and Description</th> +</tr> +<tr class="altColor"> +<td class="colOne"><code><strong><a href="../../../../../org/apache/accumulo/core/data/PartialKey.html#ROW">ROW</a></strong></code> </td> +</tr> +<tr class="rowColor"> +<td class="colOne"><code><strong><a href="../../../../../org/apache/accumulo/core/data/PartialKey.html#ROW_COLFAM">ROW_COLFAM</a></strong></code> </td> +</tr> +<tr class="altColor"> +<td class="colOne"><code><strong><a href="../../../../../org/apache/accumulo/core/data/PartialKey.html#ROW_COLFAM_COLQUAL">ROW_COLFAM_COLQUAL</a></strong></code> </td> +</tr> +<tr class="rowColor"> +<td class="colOne"><code><strong><a href="../../../../../org/apache/accumulo/core/data/PartialKey.html#ROW_COLFAM_COLQUAL_COLVIS">ROW_COLFAM_COLQUAL_COLVIS</a></strong></code> </td> +</tr> +<tr class="altColor"> +<td class="colOne"><code><strong><a href="../../../../../org/apache/accumulo/core/data/PartialKey.html#ROW_COLFAM_COLQUAL_COLVIS_TIME">ROW_COLFAM_COLQUAL_COLVIS_TIME</a></strong></code> </td> +</tr> +<tr class="rowColor"> +<td class="colOne"><code><strong><a href="../../../../../org/apache/accumulo/core/data/PartialKey.html#ROW_COLFAM_COLQUAL_COLVIS_TIME_DEL">ROW_COLFAM_COLQUAL_COLVIS_TIME_DEL</a></strong></code> </td> +</tr> +</table> +</li> +</ul> +<!-- ========== METHOD SUMMARY =========== --> +<ul class="blockList"> +<li class="blockList"><a name="method_summary"> +<!-- --> +</a> +<h3>Method Summary</h3> +<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> +<caption><span>Methods</span><span class="tabEnd"> </span></caption> +<tr> +<th class="colFirst" scope="col">Modifier and Type</th> +<th class="colLast" scope="col">Method and Description</th> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/accumulo/core/data/PartialKey.html" title="enum in org.apache.accumulo.core.data">PartialKey</a></code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/PartialKey.html#getByDepth(int)">getByDepth</a></strong>(int depth)</code> </td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>int</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/PartialKey.html#getDepth()">getDepth</a></strong>()</code> </td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/accumulo/core/data/PartialKey.html" title="enum in org.apache.accumulo.core.data">PartialKey</a></code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/PartialKey.html#valueOf(java.lang.String)">valueOf</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</code> +<div class="block">Returns the enum constant of this type with the specified name.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>static <a href="../../../../../org/apache/accumulo/core/data/PartialKey.html" title="enum in org.apache.accumulo.core.data">PartialKey</a>[]</code></td> +<td class="colLast"><code><strong><a href="../../../../../org/apache/accumulo/core/data/PartialKey.html#values()">values</a></strong>()</code> +<div class="block">Returns an array containing the constants of this enum type, in +the order they are declared.</div> +</td> +</tr> +</table> +<ul class="blockList"> +<li class="blockList"><a name="methods_inherited_from_class_java.lang.Enum"> +<!-- --> +</a> +<h3>Methods inherited from class java.lang.<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang">Enum</a></h3> +<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Enum.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Enum.html?is-external=true#compareTo(E)" title="class or interface in java.lang">compareTo</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Enum.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Enum.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Enum.html?is-external=true#getDeclaringClass()" title="class or interface in java.lang">getDeclaringClass</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Enum.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/6/docs/ api/java/lang/Enum.html?is-external=true#name()" title="class or interface in java.lang">name</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Enum.html?is-external=true#ordinal()" title="class or interface in java.lang">ordinal</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Enum.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Enum.html?is-external=true#valueOf(java.lang.Class,%20java.lang.String)" title="class or interface in java.lang">valueOf</a></code></li> +</ul> +<ul class="blockList"> +<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> +<!-- --> +</a> +<h3>Methods inherited from class java.lang.<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3> +<code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/6/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)" title="class or interface in java.lang">wait</a></code></li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +<div class="details"> +<ul class="blockList"> +<li class="blockList"> +<!-- ============ ENUM CONSTANT DETAIL =========== --> +<ul class="blockList"> +<li class="blockList"><a name="enum_constant_detail"> +<!-- --> +</a> +<h3>Enum Constant Detail</h3> +<a name="ROW"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>ROW</h4> +<pre>public static final <a href="../../../../../org/apache/accumulo/core/data/PartialKey.html" title="enum in org.apache.accumulo.core.data">PartialKey</a> ROW</pre> +</li> +</ul> +<a name="ROW_COLFAM"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>ROW_COLFAM</h4> +<pre>public static final <a href="../../../../../org/apache/accumulo/core/data/PartialKey.html" title="enum in org.apache.accumulo.core.data">PartialKey</a> ROW_COLFAM</pre> +</li> +</ul> +<a name="ROW_COLFAM_COLQUAL"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>ROW_COLFAM_COLQUAL</h4> +<pre>public static final <a href="../../../../../org/apache/accumulo/core/data/PartialKey.html" title="enum in org.apache.accumulo.core.data">PartialKey</a> ROW_COLFAM_COLQUAL</pre> +</li> +</ul> +<a name="ROW_COLFAM_COLQUAL_COLVIS"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>ROW_COLFAM_COLQUAL_COLVIS</h4> +<pre>public static final <a href="../../../../../org/apache/accumulo/core/data/PartialKey.html" title="enum in org.apache.accumulo.core.data">PartialKey</a> ROW_COLFAM_COLQUAL_COLVIS</pre> +</li> +</ul> +<a name="ROW_COLFAM_COLQUAL_COLVIS_TIME"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>ROW_COLFAM_COLQUAL_COLVIS_TIME</h4> +<pre>public static final <a href="../../../../../org/apache/accumulo/core/data/PartialKey.html" title="enum in org.apache.accumulo.core.data">PartialKey</a> ROW_COLFAM_COLQUAL_COLVIS_TIME</pre> +</li> +</ul> +<a name="ROW_COLFAM_COLQUAL_COLVIS_TIME_DEL"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>ROW_COLFAM_COLQUAL_COLVIS_TIME_DEL</h4> +<pre>public static final <a href="../../../../../org/apache/accumulo/core/data/PartialKey.html" title="enum in org.apache.accumulo.core.data">PartialKey</a> ROW_COLFAM_COLQUAL_COLVIS_TIME_DEL</pre> +</li> +</ul> +</li> +</ul> +<!-- ============ METHOD DETAIL ========== --> +<ul class="blockList"> +<li class="blockList"><a name="method_detail"> +<!-- --> +</a> +<h3>Method Detail</h3> +<a name="values()"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>values</h4> +<pre>public static <a href="../../../../../org/apache/accumulo/core/data/PartialKey.html" title="enum in org.apache.accumulo.core.data">PartialKey</a>[] values()</pre> +<div class="block">Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +<pre> +for (PartialKey c : PartialKey.values()) + System.out.println(c); +</pre></div> +<dl><dt><span class="strong">Returns:</span></dt><dd>an array containing the constants of this enum type, in the order they are declared</dd></dl> +</li> +</ul> +<a name="valueOf(java.lang.String)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>valueOf</h4> +<pre>public static <a href="../../../../../org/apache/accumulo/core/data/PartialKey.html" title="enum in org.apache.accumulo.core.data">PartialKey</a> valueOf(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</pre> +<div class="block">Returns the enum constant of this type with the specified name. +The string must match <i>exactly</i> an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - the name of the enum constant to be returned.</dd> +<dt><span class="strong">Returns:</span></dt><dd>the enum constant with the specified name</dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if this enum type has no constant with the specified name</dd> +<dd><code><a href="http://docs.oracle.com/javase/6/docs/api/java/lang/NullPointerException.html?is-external=true" title="class or interface in java.lang">NullPointerException</a></code> - if the argument is null</dd></dl> +</li> +</ul> +<a name="getByDepth(int)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>getByDepth</h4> +<pre>public static <a href="../../../../../org/apache/accumulo/core/data/PartialKey.html" title="enum in org.apache.accumulo.core.data">PartialKey</a> getByDepth(int depth)</pre> +</li> +</ul> +<a name="getDepth()"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>getDepth</h4> +<pre>public int getDepth()</pre> +</li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +</div> +<!-- ========= END OF CLASS DATA ========= --> +<!-- ======= START OF BOTTOM NAVBAR ====== --> +<div class="bottomNav"><a name="navbar_bottom"> +<!-- --> +</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="class-use/PartialKey.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">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li><a href="../../../../../org/apache/accumulo/core/data/Mutation.html" title="class in org.apache.accumulo.core.data"><span class="strong">Prev Class</span></a></li> +<li><a href="../../../../../org/apache/accumulo/core/data/Range.html" title="class in org.apache.accumulo.core.data"><span class="strong">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../../../index.html?org/apache/accumulo/core/data/PartialKey.html" target="_top">Frames</a></li> +<li><a href="PartialKey.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_bottom"> +<li><a href="../../../../../allclasses-noframe.html">All Classes</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>Summary: </li> +<li>Nested | </li> +<li><a href="#enum_constant_summary">Enum Constants</a> | </li> +<li>Field | </li> +<li><a href="#method_summary">Method</a></li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li><a href="#enum_constant_detail">Enum Constants</a> | </li> +<li>Field | </li> +<li><a href="#method_detail">Method</a></li> +</ul> +</div> +<a name="skip-navbar_bottom"> +<!-- --> +</a></div> +<!-- ======== END OF BOTTOM NAVBAR ======= --> +<p class="legalCopy"><small>Copyright © 2016 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.</small></p> +</body> +</html>
