FileDocCategorySizeDatePackage
ByteBufferAsFloatBufferRL.javaAPI DocJava SE 5 API1936Fri Aug 26 16:50:28 BST 2005java.nio

ByteBufferAsFloatBufferRL

public class ByteBufferAsFloatBufferRL extends ByteBufferAsFloatBufferL

Fields Summary
Constructors Summary
ByteBufferAsFloatBufferRL(ByteBuffer bb)

	// package-private












	super(bb);

    
ByteBufferAsFloatBufferRL(ByteBuffer bb, int mark, int pos, int lim, int cap, int off)






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

    
Methods Summary
public java.nio.FloatBufferasReadOnlyBuffer()









	return duplicate();

    
public java.nio.FloatBuffercompact()

















	throw new ReadOnlyBufferException();

    
public java.nio.FloatBufferduplicate()

	return new ByteBufferAsFloatBufferRL(bb,
						    this.markValue(),
						    this.position(),
						    this.limit(),
						    this.capacity(),
						    offset);
    
public booleanisDirect()

	return bb.isDirect();
    
public booleanisReadOnly()

	return true;
    
public java.nio.ByteOrderorder()





	return ByteOrder.LITTLE_ENDIAN;

    
public java.nio.FloatBufferput(float x)





	throw new ReadOnlyBufferException();

    
public java.nio.FloatBufferput(int i, float x)





	throw new ReadOnlyBufferException();

    
public java.nio.FloatBufferslice()

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