FileDocCategorySizeDatePackage
FloatToByteBufferAdapter.javaAPI DocAndroid 1.5 API6021Wed May 06 22:41:04 BST 2009java.nio

FloatToByteBufferAdapter

public final class FloatToByteBufferAdapter extends FloatBuffer implements org.apache.harmony.nio.internal.DirectBuffer
This class wraps a byte buffer to be a float buffer.

Implementation notice:

  • After a byte buffer instance is wrapped, it becomes privately owned by the adapter. It must NOT be accessed outside the adapter any more.
  • The byte buffer's position and limit are NOT linked with the adapter. The adapter extends Buffer, thus has its own position and limit.

Fields Summary
private final ByteBuffer
byteBuffer
Constructors Summary
FloatToByteBufferAdapter(ByteBuffer byteBuffer)

        super((byteBuffer.capacity() >> 2));
        this.byteBuffer = byteBuffer;
        this.byteBuffer.clear();
    
Methods Summary
public voidaddressValidityCheck()

        if (byteBuffer instanceof DirectBuffer) {
            ((DirectBuffer)byteBuffer).addressValidityCheck();
        } else {
            assert false : byteBuffer;
        }
    
public java.nio.FloatBufferasReadOnlyBuffer()

        FloatToByteBufferAdapter buf = new FloatToByteBufferAdapter(byteBuffer
                .asReadOnlyBuffer());
        buf.limit = limit;
        buf.position = position;
        buf.mark = mark;
        return buf;
    
public java.nio.FloatBuffercompact()

        if (byteBuffer.isReadOnly()) {
            throw new ReadOnlyBufferException();
        }
        byteBuffer.limit(limit << 2);
        byteBuffer.position(position << 2);
        byteBuffer.compact();
        byteBuffer.clear();
        position = limit - position;
        limit = capacity;
        mark = UNSET_MARK;
        return this;
    
public java.nio.FloatBufferduplicate()

        FloatToByteBufferAdapter buf = new FloatToByteBufferAdapter(byteBuffer
                .duplicate());
        buf.limit = limit;
        buf.position = position;
        buf.mark = mark;
        return buf;
    
public voidfree()

        if (byteBuffer instanceof DirectBuffer) {
            ((DirectBuffer)byteBuffer).free();
        } else {
            assert false : byteBuffer;
        }   
    
public floatget()

        if (position == limit) {
            throw new BufferUnderflowException();
        }
        return byteBuffer.getFloat(position++ << 2);
    
public floatget(int index)

        if (index < 0 || index >= limit) {
            throw new IndexOutOfBoundsException();
        }
        return byteBuffer.getFloat(index << 2);
    
public org.apache.harmony.luni.platform.PlatformAddressgetBaseAddress()

        if (byteBuffer instanceof DirectBuffer) {
            return ((DirectBuffer)byteBuffer).getBaseAddress();
        } else {
            assert false : byteBuffer;
            return null;
        }
    
public intgetByteCapacity()

        if (byteBuffer instanceof DirectBuffer) {
            return ((DirectBuffer)byteBuffer).getByteCapacity();
        } else {
            assert false : byteBuffer;
            return -1;
        }            
    
public org.apache.harmony.luni.platform.PlatformAddressgetEffectiveAddress()

        if (byteBuffer instanceof DirectBuffer) {
            return ((DirectBuffer)byteBuffer).getEffectiveAddress();
        } else {
            assert false : byteBuffer;
            return null;
        }
    
public booleanisAddressValid()

        if (byteBuffer instanceof DirectBuffer) {
            return ((DirectBuffer)byteBuffer).isAddressValid();
        } else {
            assert false : byteBuffer;
            return false;
        }
    
public booleanisDirect()

        return byteBuffer.isDirect();
    
public booleanisReadOnly()

        return byteBuffer.isReadOnly();
    
public java.nio.ByteOrderorder()

        return byteBuffer.order();
    
protected float[]protectedArray()

        throw new UnsupportedOperationException();
    
protected intprotectedArrayOffset()

        throw new UnsupportedOperationException();
    
protected booleanprotectedHasArray()

        return false;
    
public java.nio.FloatBufferput(float c)

        if (position == limit) {
            throw new BufferOverflowException();
        }
        byteBuffer.putFloat(position++ << 2, c);
        return this;
    
public java.nio.FloatBufferput(int index, float c)

        if (index < 0 || index >= limit) {
            throw new IndexOutOfBoundsException();
        }
        byteBuffer.putFloat(index << 2, c);
        return this;
    
public java.nio.FloatBufferslice()

        byteBuffer.limit(limit << 2);
        byteBuffer.position(position << 2);
        FloatBuffer result = new FloatToByteBufferAdapter(byteBuffer.slice());
        byteBuffer.clear();
        return result;
    
static java.nio.FloatBufferwrap(java.nio.ByteBuffer byteBuffer)

        return new FloatToByteBufferAdapter(byteBuffer.slice());