| java.lang.Object com.mobixess.jodb.util.IntVector
Method Summary | |
final public void | addElement(int value) Append a int onto the vector. | final public void | addElements(int value, int numberOfElements) Append several int values onto the vector. | final public int | binarySearch(int key) | final public boolean | contains(int s) Tell if the table contains the given node. | final public int | elementAt(int i) Get the nth element. | public int[] | getDataAsArray() | final public int | indexOf(int elem, int index) Searches for the first occurence of the given argument, beginning the
search at index, and testing for equality using the equals method. | final public int | indexOf(int elem) Searches for the first occurence of the given argument, beginning the
search at index, and testing for equality using the equals method. | final public void | insertElementAt(int value, int at) Inserts the specified node in this vector at the specified index. | final public int | lastIndexOf(int elem) Searches for the first occurence of the given argument, beginning the
search at index, and testing for equality using the equals method. | final public void | removeAllElements() | final public boolean | removeElement(int s) Removes the first occurrence of the argument from this vector. | final public void | removeElementAt(int i) Deletes the component at the specified index. | final public void | setElementAt(int value, int index) Sets the component at the specified index of this vector to be the
specified object. | final public void | setSize(int sz) Get the length of the list. | final public int | size() Get the length of the list. |
DEFAULT_INCREMENT | final public static int DEFAULT_INCREMENT(Code) | | |
IntVector | public IntVector()(Code) | | |
IntVector | public IntVector(int increment)(Code) | | |
IntVector | public IntVector(int initialSize, int increment)(Code) | | |
IntVector | public IntVector(int[] data)(Code) | | |
addElement | final public void addElement(int value)(Code) | | Append a int onto the vector.
Parameters: value - Int to add to the list |
addElements | final public void addElements(int value, int numberOfElements)(Code) | | Append several int values onto the vector.
Parameters: value - Int to add to the list |
binarySearch | final public int binarySearch(int key)(Code) | | |
contains | final public boolean contains(int s)(Code) | | Tell if the table contains the given node.
Parameters: s - object to look for true if the object is in the list |
elementAt | final public int elementAt(int i)(Code) | | Get the nth element.
Parameters: i - index of object to get object at given index |
getDataAsArray | public int[] getDataAsArray()(Code) | | |
indexOf | final public int indexOf(int elem, int index)(Code) | | Searches for the first occurence of the given argument, beginning the
search at index, and testing for equality using the equals method.
Parameters: elem - object to look for Parameters: index - Index of where to begin search the index of the first occurrence of the object argument in thisvector at position index or later in the vector; returns -1 ifthe object is not found. |
indexOf | final public int indexOf(int elem)(Code) | | Searches for the first occurence of the given argument, beginning the
search at index, and testing for equality using the equals method.
Parameters: elem - object to look for the index of the first occurrence of the object argument in thisvector at position index or later in the vector; returns -1 ifthe object is not found. |
insertElementAt | final public void insertElementAt(int value, int at)(Code) | | Inserts the specified node in this vector at the specified index.
Parameters: value - Int to insert Parameters: at - Index of where to insert |
lastIndexOf | final public int lastIndexOf(int elem)(Code) | | Searches for the first occurence of the given argument, beginning the
search at index, and testing for equality using the equals method.
Parameters: elem - Object to look for the index of the first occurrence of the object argument in thisvector at position index or later in the vector; returns -1 ifthe object is not found. |
removeAllElements | final public void removeAllElements()(Code) | | |
removeElement | final public boolean removeElement(int s)(Code) | | Removes the first occurrence of the argument from this vector. If the
object is found in this vector, each component in the vector with an
index greater or equal to the object's index is shifted downward to have
an index one smaller than the value it had previously.
Parameters: s - Int to remove from array True if the int was removed, false if it was not found |
removeElementAt | final public void removeElementAt(int i)(Code) | | Deletes the component at the specified index. Each component in this
vector with an index greater or equal to the specified index is shifted
downward to have an index one smaller than the value it had previously.
Parameters: i - index of where to remove and int |
setElementAt | final public void setElementAt(int value, int index)(Code) | | Sets the component at the specified index of this vector to be the
specified object. The previous component at that position is discarded.
The index must be a value greater than or equal to 0 and less than the
current size of the vector.
Parameters: node - object to set Parameters: index - Index of where to set the object |
setSize | final public void setSize(int sz)(Code) | | Get the length of the list.
length of the list |
size | final public int size()(Code) | | Get the length of the list.
length of the list |
|
|