Exemplo n.º 1
0
  public ByteBuffer getBytesUnsafe(int i) {
    metadata.checkBounds(i);

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

    return value.duplicate();
  }
Exemplo n.º 2
0
 public boolean isNull(int i) {
   metadata.checkBounds(i);
   return data.get(i) == null;
 }