本文整理汇总了Java中com.datastax.driver.core.utils.Bytes.getArray方法的典型用法代码示例。如果您正苦于以下问题:Java Bytes.getArray方法的具体用法?Java Bytes.getArray怎么用?Java Bytes.getArray使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.datastax.driver.core.utils.Bytes
的用法示例。
在下文中一共展示了Bytes.getArray方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: get
import com.datastax.driver.core.utils.Bytes; //导入方法依赖的package包/类
public static byte[] get(byte[] key)
{
BoundStatement boundStatement = new BoundStatement(getStatement);
boundStatement.setBytes(0, ByteBuffer.wrap(key));
final com.datastax.driver.core.ResultSet resultSet = session.execute(boundStatement);
final Row row = resultSet.one();
if (row != null)
{
final ByteBuffer byteBuf = row.getBytes("value");
return Bytes.getArray(byteBuf);
}
return null;
}
示例2: asByteArray
import com.datastax.driver.core.utils.Bytes; //导入方法依赖的package包/类
/**
* Transforms the given row in a byte array containing term identifiers.
*
* @param row the row.
* @return a byte array containing term identifiers.
*/
private byte[][] asByteArray(final Row row) {
final byte[] s = Bytes.getArray(row.getBytesUnsafe(0));
final byte[] p = Bytes.getArray(row.getBytesUnsafe(1));
final byte[] o = Bytes.getArray(row.getBytesUnsafe(2));
final ByteBuffer c = row.getBytesUnsafe(3);
return (c != null)
? new byte[][] {s, p, o}
: new byte[][] {s, p, o, Bytes.getArray(c)};
}
示例3: getBytes
import com.datastax.driver.core.utils.Bytes; //导入方法依赖的package包/类
/**
* This method convert ByteBuffer object to byte array.
*
* @return the byte array or null
*/
public static byte[] getBytes(ByteBuffer byteBuffer) {
byte[] array = null;
if (byteBuffer != null) {
array = Bytes.getArray(byteBuffer);
}
return array;
}