FileDocCategorySizeDatePackage
CharToByteBufferAdapter.javaAPI DocAndroid 1.5 API6352Wed May 06 22:41:04 BST 2009java.nio

CharToByteBufferAdapter

public final class CharToByteBufferAdapter extends CharBuffer implements org.apache.harmony.nio.internal.DirectBuffer
This class wraps a byte buffer to be a char 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
CharToByteBufferAdapter(ByteBuffer byteBuffer)

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

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

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

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

        CharToByteBufferAdapter buf = new CharToByteBufferAdapter(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 charget()

        if (position == limit) {
            throw new BufferUnderflowException();
        }
        return byteBuffer.getChar(position++ << 1);
    
public charget(int index)

        if (index < 0 || index >= limit) {
            throw new IndexOutOfBoundsException();
        }
        return byteBuffer.getChar(index << 1);
    
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 char[]protectedArray()

        throw new UnsupportedOperationException();
    
protected intprotectedArrayOffset()

        throw new UnsupportedOperationException();
    
protected booleanprotectedHasArray()

        return false;
    
public java.nio.CharBufferput(char c)

        if (position == limit) {
            throw new BufferOverflowException();
        }
        byteBuffer.putChar(position++ << 1, c);
        return this;
    
public java.nio.CharBufferput(int index, char c)

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

        byteBuffer.limit(limit << 1);
        byteBuffer.position(position << 1);
        CharBuffer result = new CharToByteBufferAdapter(byteBuffer.slice());
        byteBuffer.clear();
        return result;
    
public java.lang.CharSequencesubSequence(int start, int end)

        if (start < 0 || end < start || end > remaining()) {
            throw new IndexOutOfBoundsException();
        }
        
        CharBuffer result = duplicate();
        result.limit(position + end);
        result.position(position + start);
        return result;
    
static java.nio.CharBufferwrap(java.nio.ByteBuffer byteBuffer)

        return new CharToByteBufferAdapter(byteBuffer.slice());