zombie.core.Styles
Class IntList

java.lang.Object
  extended by zombie.core.Styles.IntList
All Implemented Interfaces:
java.io.Serializable

public class IntList
extends java.lang.Object
implements java.io.Serializable

Author:
LEMMYLAP
See Also:
Serialized Form

Constructor Summary
IntList()
          FloatList constructor comment.
IntList(boolean fastExpand, int size)
          FloatList constructor comment.
IntList(int size)
          FloatList constructor comment.
 
Method Summary
 int add(short f)
          add method comment.
 void addAll(IntList f)
          add method comment.
 void addAll(short[] f)
          add method comment.
 int[] array()
          toArray method comment.
 int capacity()
           
 void clear()
          clear method comment.
 void ensureCapacity(int size)
          Ensure the list is at least 'size' elements big.
 int get(int index)
          get method comment.
 boolean isEmpty()
          isEmpty method comment.
 int remove(int idx)
          Remove an element and return it.
 int size()
          size method comment.
 short[] toArray(short[] dest)
          Stash everything in an array.
 void trimToSize()
          Pack list to its minimum size.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IntList

public IntList()
FloatList constructor comment.


IntList

public IntList(int size)
FloatList constructor comment.


IntList

public IntList(boolean fastExpand,
               int size)
FloatList constructor comment.

Method Detail

add

public int add(short f)
add method comment.


remove

public int remove(int idx)
Remove an element and return it.

Parameters:
idx - The index of the element to remove
Returns:
the removed value

addAll

public void addAll(short[] f)
add method comment.


addAll

public void addAll(IntList f)
add method comment.


array

public int[] array()
toArray method comment.


capacity

public int capacity()
Returns:

clear

public void clear()
clear method comment.


ensureCapacity

public void ensureCapacity(int size)
Ensure the list is at least 'size' elements big.


get

public int get(int index)
get method comment.


isEmpty

public boolean isEmpty()
isEmpty method comment.


size

public int size()
size method comment.


toArray

public short[] toArray(short[] dest)
Stash everything in an array.


trimToSize

public void trimToSize()
Pack list to its minimum size.