本文整理汇总了Java中org.apache.hadoop.hbase.index.client.DataType.LONG属性的典型用法代码示例。如果您正苦于以下问题:Java DataType.LONG属性的具体用法?Java DataType.LONG怎么用?Java DataType.LONG使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.apache.hadoop.hbase.index.client.DataType
的用法示例。
在下文中一共展示了DataType.LONG属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getStringOfValueAndType
public static String getStringOfValueAndType(final DataType type, final byte[] data) {
if (data == null) return "null";
if (type == DataType.SHORT || type == DataType.INT) {
return String.valueOf(Bytes.toInt(data));
}
if (type == DataType.DOUBLE) {
return String.valueOf(Bytes.toDouble(data));
}
if (type == DataType.LONG) {
return String.valueOf(Bytes.toLong(data));
}
if (type == DataType.STRING) {
return Bytes.toString(data);
}
return "mWinterGetStringOfValueAndType type not supported!";
}
示例2: mWinterCalRangeKey
private byte[] mWinterCalRangeKey(byte[] qualifier, byte[] key) throws IOException {
if (key == null) {
return null;
}
// winter the column indicated the target column-family to scan!
DataType type = LCCIndexConstant.getType(lccIndexQualifierType, qualifier);
byte[] lccValue = null;
if (type == DataType.DOUBLE) {
lccValue = Bytes.toBytes(LCCIndexConstant.paddedStringDouble(Bytes.toDouble(key)));
} else if (type == DataType.INT) {
lccValue = Bytes.toBytes(LCCIndexConstant.paddedStringInt(Bytes.toInt(key)));
} else if (type == DataType.LONG) {
lccValue = Bytes.toBytes(LCCIndexConstant.paddedStringLong(Bytes.toLong(key)));
} else if (type == DataType.STRING) {
// lccValue = Bytes.toBytes(LCCIndexConstant.paddedStringString(Bytes.toString(key)));
lccValue = key;
} else {
throw new IOException("winter range generating new endkey not implemented yet: "
+ Bytes.toString(qualifier));
}
return lccValue;
}
示例3: parseType
private DataType parseType(String str) {
if ("boolean".equalsIgnoreCase(str)) return DataType.BOOLEAN;
if ("double".equalsIgnoreCase(str)) return DataType.DOUBLE;
if ("int".equalsIgnoreCase(str)) return DataType.INT;
if ("LONG".equalsIgnoreCase(str)) return DataType.LONG;
if ("short".equalsIgnoreCase(str)) return DataType.SHORT;
if ("string".equalsIgnoreCase(str)) return DataType.STRING;
return DataType.STRING;
}