Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.nio.LongBuffer

Uses of LongBuffer in java.nio
 

Subclasses of LongBuffer in java.nio
(package private)  class LongBufferImpl
          This is a Heap memory implementation
(package private)  class LongViewBufferImpl
           
 

Methods in java.nio that return LongBuffer
 LongBuffer MappedByteBufferImpl.asLongBuffer()
           
 LongBuffer LongViewBufferImpl.put(long value)
           
 LongBuffer LongViewBufferImpl.put(int index, long value)
           
 LongBuffer LongViewBufferImpl.compact()
           
 LongBuffer LongViewBufferImpl.slice()
           
(package private)  LongBuffer LongViewBufferImpl.duplicate(boolean readOnly)
           
 LongBuffer LongViewBufferImpl.duplicate()
           
 LongBuffer LongViewBufferImpl.asReadOnlyBuffer()
           
 LongBuffer LongBufferImpl.slice()
           
 LongBuffer LongBufferImpl.duplicate()
           
 LongBuffer LongBufferImpl.asReadOnlyBuffer()
           
 LongBuffer LongBufferImpl.compact()
           
 LongBuffer LongBufferImpl.put(long value)
          Relative put method.
 LongBuffer LongBufferImpl.put(int index, long value)
          Absolute put method.
 LongBuffer DirectByteBufferImpl.asLongBuffer()
           
 LongBuffer ByteBufferImpl.asLongBuffer()
           
abstract  LongBuffer ByteBuffer.asLongBuffer()
          Creates a view of this byte buffer as a long buffer.
static LongBuffer LongBuffer.allocate(int capacity)
          Allocates a new LongBuffer object with a given capacity.
static LongBuffer LongBuffer.wrap(long[] array, int offset, int length)
          Wraps a long array into a LongBuffer object.
static LongBuffer LongBuffer.wrap(long[] array)
          Wraps a long array into a LongBuffer object.
 LongBuffer LongBuffer.get(long[] dst, int offset, int length)
          This method transfers longs from this buffer into the given destination array.
 LongBuffer LongBuffer.get(long[] dst)
          This method transfers longs from this buffer into the given destination array.
 LongBuffer LongBuffer.put(LongBuffer src)
          Writes the content of the the LongBUFFER src into the buffer.
 LongBuffer LongBuffer.put(long[] src, int offset, int length)
          Writes the content of the the long array src into the buffer.
 LongBuffer LongBuffer.put(long[] src)
          Writes the content of the the long array src into the buffer.
abstract  LongBuffer LongBuffer.put(long b)
          Writes the long at this buffer's current position, and then increments the position.
abstract  LongBuffer LongBuffer.put(int index, long b)
          Absolute put method.
abstract  LongBuffer LongBuffer.compact()
          Compacts this buffer.
abstract  LongBuffer LongBuffer.slice()
          Creates a new LongBuffer whose content is a shared subsequence of this buffer's content.
abstract  LongBuffer LongBuffer.duplicate()
          Creates a new LongBuffer that shares this buffer's content.
abstract  LongBuffer LongBuffer.asReadOnlyBuffer()
          Creates a new read-only LongBuffer that shares this buffer's content.
 

Methods in java.nio with parameters of type LongBuffer
 LongBuffer LongBuffer.put(LongBuffer src)
          Writes the content of the the LongBUFFER src into the buffer.