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

Quick Search    Search Deep

Uses of Class
java.nio.ShortBuffer

Uses of ShortBuffer in java.nio
 

Subclasses of ShortBuffer in java.nio
(package private)  class ShortBufferImpl
          This is a Heap memory implementation
(package private)  class ShortViewBufferImpl
           
 

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

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