本文整理汇总了Java中org.apache.hadoop.hbase.KeyValue.equals方法的典型用法代码示例。如果您正苦于以下问题:Java KeyValue.equals方法的具体用法?Java KeyValue.equals怎么用?Java KeyValue.equals使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.hadoop.hbase.KeyValue
的用法示例。
在下文中一共展示了KeyValue.equals方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: transform
import org.apache.hadoop.hbase.KeyValue; //导入方法依赖的package包/类
/**
* WARNING: please to not override this method. Instead override {@link #transformCell(Cell)}.
*
* When removing this, its body should be placed in transformCell.
*
* This is for transition from 0.94 -> 0.96
*/
@Deprecated
@Override
public KeyValue transform(KeyValue v) throws IOException {
// transform() is expected to follow an inclusive filterKeyValue() immediately:
if (!v.equals(this.referenceKV)) {
throw new IllegalStateException(
"Reference Cell: " + this.referenceKV + " does not match: " + v);
}
return KeyValueUtil.ensureKeyValue(this.transformedKV);
}