FileDocCategorySizeDatePackage
DirectShortBufferRU.javaAPI DocJava SE 5 API2740Fri Aug 26 16:48:58 BST 2005java.nio

DirectShortBufferRU

public class DirectShortBufferRU extends DirectShortBufferU implements DirectBuffer

Fields Summary
Constructors Summary
DirectShortBufferRU(DirectBuffer db, int mark, int pos, int lim, int cap, int off)









	super(db, mark, pos, lim, cap, off);

    
Methods Summary
public java.nio.ShortBufferasReadOnlyBuffer()









	return duplicate();

    
public java.nio.ShortBuffercompact()












	throw new ReadOnlyBufferException();

    
public java.nio.ShortBufferduplicate()

	return new DirectShortBufferRU(this,
					      this.markValue(),
					      this.position(),
					      this.limit(),
					      this.capacity(),
					      0);
    
public booleanisDirect()

	return true;
    
public booleanisReadOnly()

	return true;
    
public java.nio.ByteOrderorder()






	return ((ByteOrder.nativeOrder() != ByteOrder.BIG_ENDIAN)
		? ByteOrder.LITTLE_ENDIAN : ByteOrder.BIG_ENDIAN);

    
public java.nio.ShortBufferput(short x)





	throw new ReadOnlyBufferException();

    
public java.nio.ShortBufferput(int i, short x)





	throw new ReadOnlyBufferException();

    
public java.nio.ShortBufferput(java.nio.ShortBuffer src)





































	throw new ReadOnlyBufferException();

    
public java.nio.ShortBufferput(short[] src, int offset, int length)























	throw new ReadOnlyBufferException();

    
public java.nio.ShortBufferslice()

	int pos = this.position();
	int lim = this.limit();
	assert (pos <= lim);
	int rem = (pos <= lim ? lim - pos : 0);
	int off = (pos << 1);
        assert (off >= 0);
	return new DirectShortBufferRU(this, -1, 0, rem, rem, off);