com.partnersoft.v3x.data
Class IntBuffer

java.lang.Object
  extended by com.partnersoft.v3x.data.GrowableArray
      extended by com.partnersoft.v3x.data.IntBuffer

public class IntBuffer
extends GrowableArray

A fast int array buffer with public access to contents. Intended for fast and unsafe operations.


Field Summary
 int[] array
           
 
Fields inherited from class com.partnersoft.v3x.data.GrowableArray
arrayObject, capacity, end, growthCap, growthMin, start
 
Constructor Summary
IntBuffer()
          Creates an empty int buffer.
IntBuffer(int size)
          Creates a int buffer of the given size.
 
Method Summary
 void add(int value)
           
 void newArray(int size)
          Allocates a new, empty array of the given size and assign it to the arrayObject property.
 
Methods inherited from class com.partnersoft.v3x.data.GrowableArray
append, clear, clone, getSize, makeRoomFor, makeRoomFor, pack, toString
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

array

public int[] array
Constructor Detail

IntBuffer

public IntBuffer()
Creates an empty int buffer. buffer is left null!


IntBuffer

public IntBuffer(int size)
Creates a int buffer of the given size.

Method Detail

newArray

public void newArray(int size)
Description copied from class: GrowableArray
Allocates a new, empty array of the given size and assign it to the arrayObject property. It is assumed that subclasses will also set it to a variable of the correct class (e.g. char[]) for ease of access as well. Copying of existing contents is managed by this superclass.

Specified by:
newArray in class GrowableArray

add

public void add(int value)