Methods Summary |
---|
public java.nio.DoubleBuffer | asReadOnlyBuffer()
return duplicate();
|
public java.nio.DoubleBuffer | compact()
throw new ReadOnlyBufferException();
|
public java.nio.DoubleBuffer | duplicate()
return new ByteBufferAsDoubleBufferRB(bb,
this.markValue(),
this.position(),
this.limit(),
this.capacity(),
offset);
|
public boolean | isDirect()
return bb.isDirect();
|
public boolean | isReadOnly()
return true;
|
public java.nio.ByteOrder | order()
return ByteOrder.BIG_ENDIAN;
|
public java.nio.DoubleBuffer | put(double x)
throw new ReadOnlyBufferException();
|
public java.nio.DoubleBuffer | put(int i, double x)
throw new ReadOnlyBufferException();
|
public java.nio.DoubleBuffer | slice()
int pos = this.position();
int lim = this.limit();
assert (pos <= lim);
int rem = (pos <= lim ? lim - pos : 0);
int off = (pos << 3) + offset;
assert (off >= 0);
return new ByteBufferAsDoubleBufferRB(bb, -1, 0, rem, rem, off);
|