示例#1
0
  public ByteBuffer getBytesUnsafe(int i) {
    metadata.checkBounds(i);

    ByteBuffer value = data.get(i);
    if (value == null) return null;

    return value.duplicate();
  }
示例#2
0
 public boolean isNull(int i) {
   metadata.checkBounds(i);
   return data.get(i) == null;
 }