FileDocCategorySizeDatePackage
HeapLongBuffer.javaAPI DocJava SE 5 API4535Fri Aug 26 16:48:16 BST 2005java.nio

HeapLongBuffer

public class HeapLongBuffer extends LongBuffer
A read/write HeapLongBuffer.

Fields Summary
Constructors Summary
HeapLongBuffer(int cap, int lim)

		// package-private

	super(-1, 0, lim, cap, new long[cap], 0);
	/*
	hb = new long[cap];
	offset = 0;
	*/




    
HeapLongBuffer(long[] buf, int off, int len)

 // package-private

	super(-1, off, off + len, buf.length, buf, 0);
	/*
	hb = buf;
	offset = 0;
	*/




    
protected HeapLongBuffer(long[] buf, int mark, int pos, int lim, int cap, int off)


	super(mark, pos, lim, cap, buf, off);
	/*
	hb = buf;
	offset = off;
	*/




    
Methods Summary
public java.nio.LongBufferasReadOnlyBuffer()


	return new HeapLongBufferR(hb,
				     this.markValue(),
				     this.position(),
				     this.limit(),
				     this.capacity(),
				     offset);



    
public java.nio.LongBuffercompact()


	System.arraycopy(hb, ix(position()), hb, ix(0), remaining());
	position(remaining());
	limit(capacity());
	return this;



    
public java.nio.LongBufferduplicate()

	return new HeapLongBuffer(hb,
					this.markValue(),
					this.position(),
					this.limit(),
					this.capacity(),
					offset);
    
public java.nio.LongBufferget(long[] dst, int offset, int length)

	checkBounds(offset, length, dst.length);
	if (length > remaining())
	    throw new BufferUnderflowException();
	System.arraycopy(hb, ix(position()), dst, offset, length);
	position(position() + length);
	return this;
    
public longget()

	return hb[ix(nextGetIndex())];
    
public longget(int i)

	return hb[ix(checkIndex(i))];
    
public booleanisDirect()

	return false;
    
public booleanisReadOnly()

	return false;
    
protected intix(int i)

	return i + offset;
    
public java.nio.ByteOrderorder()

	return ByteOrder.nativeOrder();
    
public java.nio.LongBufferput(long x)


	hb[ix(nextPutIndex())] = x;
	return this;



    
public java.nio.LongBufferput(int i, long x)


	hb[ix(checkIndex(i))] = x;
	return this;



    
public java.nio.LongBufferput(long[] src, int offset, int length)


	checkBounds(offset, length, src.length);
	if (length > remaining())
	    throw new BufferOverflowException();
	System.arraycopy(src, offset, hb, ix(position()), length);
	position(position() + length);
	return this;



    
public java.nio.LongBufferput(java.nio.LongBuffer src)


	if (src instanceof HeapLongBuffer) {
	    if (src == this)
		throw new IllegalArgumentException();
	    HeapLongBuffer sb = (HeapLongBuffer)src;
	    int n = sb.remaining();
	    if (n > remaining())
		throw new BufferOverflowException();
	    System.arraycopy(sb.hb, sb.ix(sb.position()),
			     hb, ix(position()), n);
	    sb.position(sb.position() + n);
	    position(position() + n);
	} else if (src.isDirect()) {
	    int n = src.remaining();
	    if (n > remaining())
		throw new BufferOverflowException();
	    src.get(hb, ix(position()), n);
	    position(position() + n);
	} else {
	    super.put(src);
	}
	return this;



    
public java.nio.LongBufferslice()

	return new HeapLongBuffer(hb,
					-1,
					0,
					this.remaining(),
					this.remaining(),
					this.position() + offset);