http://git-wip-us.apache.org/repos/asf/hbase-site/blob/22cff34f/apidocs/src-html/org/apache/hadoop/hbase/client/OperationWithAttributes.html ---------------------------------------------------------------------- diff --git a/apidocs/src-html/org/apache/hadoop/hbase/client/OperationWithAttributes.html b/apidocs/src-html/org/apache/hadoop/hbase/client/OperationWithAttributes.html index 057fcd3..782620c 100644 --- a/apidocs/src-html/org/apache/hadoop/hbase/client/OperationWithAttributes.html +++ b/apidocs/src-html/org/apache/hadoop/hbase/client/OperationWithAttributes.html @@ -52,7 +52,7 @@ <span class="sourceLineNo">044</span> }<a name="line.44"></a> <span class="sourceLineNo">045</span><a name="line.45"></a> <span class="sourceLineNo">046</span> if (attributes == null) {<a name="line.46"></a> -<span class="sourceLineNo">047</span> attributes = new HashMap<String, byte[]>();<a name="line.47"></a> +<span class="sourceLineNo">047</span> attributes = new HashMap<>();<a name="line.47"></a> <span class="sourceLineNo">048</span> }<a name="line.48"></a> <span class="sourceLineNo">049</span><a name="line.49"></a> <span class="sourceLineNo">050</span> if (value == null) {<a name="line.50"></a>
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/22cff34f/apidocs/src-html/org/apache/hadoop/hbase/client/Put.html ---------------------------------------------------------------------- diff --git a/apidocs/src-html/org/apache/hadoop/hbase/client/Put.html b/apidocs/src-html/org/apache/hadoop/hbase/client/Put.html index 45b8fb8..64126fa 100644 --- a/apidocs/src-html/org/apache/hadoop/hbase/client/Put.html +++ b/apidocs/src-html/org/apache/hadoop/hbase/client/Put.html @@ -169,9 +169,9 @@ <span class="sourceLineNo">161</span> */<a name="line.161"></a> <span class="sourceLineNo">162</span> public Put(Put putToCopy) {<a name="line.162"></a> <span class="sourceLineNo">163</span> this(putToCopy.getRow(), putToCopy.ts);<a name="line.163"></a> -<span class="sourceLineNo">164</span> this.familyMap = new TreeMap<byte [], List<Cell>>(Bytes.BYTES_COMPARATOR);<a name="line.164"></a> +<span class="sourceLineNo">164</span> this.familyMap = new TreeMap<>(Bytes.BYTES_COMPARATOR);<a name="line.164"></a> <span class="sourceLineNo">165</span> for(Map.Entry<byte [], List<Cell>> entry: putToCopy.getFamilyCellMap().entrySet()) {<a name="line.165"></a> -<span class="sourceLineNo">166</span> this.familyMap.put(entry.getKey(), new ArrayList<Cell>(entry.getValue()));<a name="line.166"></a> +<span class="sourceLineNo">166</span> this.familyMap.put(entry.getKey(), new ArrayList<>(entry.getValue()));<a name="line.166"></a> <span class="sourceLineNo">167</span> }<a name="line.167"></a> <span class="sourceLineNo">168</span> this.durability = putToCopy.durability;<a name="line.168"></a> <span class="sourceLineNo">169</span> for (Map.Entry<String, byte[]> entry : putToCopy.getAttributesMap().entrySet()) {<a name="line.169"></a> @@ -472,7 +472,7 @@ <span class="sourceLineNo">464</span> * returns an empty list if one doesn't exist for the given family.<a name="line.464"></a> <span class="sourceLineNo">465</span> */<a name="line.465"></a> <span class="sourceLineNo">466</span> public List<Cell> get(byte[] family, byte[] qualifier) {<a name="line.466"></a> -<span class="sourceLineNo">467</span> List<Cell> filteredList = new ArrayList<Cell>();<a name="line.467"></a> +<span class="sourceLineNo">467</span> List<Cell> filteredList = new ArrayList<>();<a name="line.467"></a> <span class="sourceLineNo">468</span> for (Cell cell: getCellList(family)) {<a name="line.468"></a> <span class="sourceLineNo">469</span> if (CellUtil.matchingQualifier(cell, qualifier)) {<a name="line.469"></a> <span class="sourceLineNo">470</span> filteredList.add(cell);<a name="line.470"></a> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/22cff34f/apidocs/src-html/org/apache/hadoop/hbase/client/Query.html ---------------------------------------------------------------------- diff --git a/apidocs/src-html/org/apache/hadoop/hbase/client/Query.html b/apidocs/src-html/org/apache/hadoop/hbase/client/Query.html index 8c761aa..127619d 100644 --- a/apidocs/src-html/org/apache/hadoop/hbase/client/Query.html +++ b/apidocs/src-html/org/apache/hadoop/hbase/client/Query.html @@ -64,7 +64,7 @@ <span class="sourceLineNo">056</span><a name="line.56"></a> <span class="sourceLineNo">057</span> /**<a name="line.57"></a> <span class="sourceLineNo">058</span> * Apply the specified server-side filter when performing the Query.<a name="line.58"></a> -<span class="sourceLineNo">059</span> * Only {@link Filter#filterKeyValue(Cell)} is called AFTER all tests<a name="line.59"></a> +<span class="sourceLineNo">059</span> * Only {@link Filter#filterKeyValue(org.apache.hadoop.hbase.Cell)} is called AFTER all tests<a name="line.59"></a> <span class="sourceLineNo">060</span> * for ttl, column match, deletes and max versions have been run.<a name="line.60"></a> <span class="sourceLineNo">061</span> * @param filter filter to run on the server<a name="line.61"></a> <span class="sourceLineNo">062</span> * @return this for invocation chaining<a name="line.62"></a>