| Constructor: |
FloatViewBufferImpl(ByteBuffer bb,
int capacity) {
super (capacity, capacity, 0, -1);
this.bb = bb;
this.offset = bb.position();
this.readOnly = bb.isReadOnly();
this.endian = bb.order();
if (bb.isDirect())
this.address = VMDirectByteBuffer.adjustAddress(bb.address, offset);
}
|
public FloatViewBufferImpl(ByteBuffer bb,
int offset,
int capacity,
int limit,
int position,
int mark,
boolean readOnly,
ByteOrder endian) {
super (capacity, limit, position, mark);
this.bb = bb;
this.offset = offset;
this.readOnly = readOnly;
this.endian = endian;
if (bb.isDirect())
this.address = VMDirectByteBuffer.adjustAddress(bb.address, offset);
}
|
| Method from java.nio.FloatViewBufferImpl Detail: |
public FloatBuffer asReadOnlyBuffer() {
return duplicate(true);
}
|
public FloatBuffer compact() {
if (position () > 0)
{
int count = limit () - position ();
bb.shiftDown(offset, offset + 4 * position(), 4 * count);
position (count);
limit (capacity ());
}
else
{
position(limit());
limit(capacity());
}
return this;
}
|
public FloatBuffer duplicate() {
return duplicate(readOnly);
}
|
FloatBuffer duplicate(boolean readOnly) {
int pos = position();
reset();
int mark = position();
position(pos);
return new FloatViewBufferImpl (bb, offset, capacity(), limit(),
pos, mark, readOnly, endian);
}
|
public float get() {
int p = position();
float result = ByteBufferHelper.getFloat(bb, (p < < 2) + offset, endian);
position(p + 1);
return result;
}
Reads the float at this buffer's current position,
and then increments the position. |
public float get(int index) {
return ByteBufferHelper.getFloat(bb, (index < < 2) + offset, endian);
}
Absolute get method. Reads the float at position
index. |
public boolean isDirect() {
return bb.isDirect ();
}
|
public boolean isReadOnly() {
return readOnly;
}
|
public ByteOrder order() {
return endian;
}
|
public FloatBuffer put(float value) {
int p = position();
ByteBufferHelper.putFloat(bb, (p < < 2) + offset, value, endian);
position(p + 1);
return this;
}
|
public FloatBuffer put(int index,
float value) {
ByteBufferHelper.putFloat(bb, (index < < 2) + offset, value, endian);
return this;
}
|
public FloatBuffer slice() {
// Create a sliced copy of this object that shares its content.
return new FloatViewBufferImpl (bb, (position () > > 2) + offset,
remaining(), remaining(), 0, -1,
readOnly, endian);
}
|