| java.lang.Object com.mobixess.jodb.util.LongVector
Method Summary | |
final public void | addElement(long value) Append a int onto the vector. | final public void | addElements(long value, int numberOfElements) Append several int values onto the vector. | final public int | binarySearch(long key) | final public boolean | contains(long s) Tell if the table contains the given node. | final public long | elementAt(int i) Get the nth element. | public long[] | getDataAsArray() | final public int | indexOf(long 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(long 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(long value, int at) Inserts the specified node in this vector at the specified index. | final public int | lastIndexOf(long 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(long 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(long 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) | | |
LongVector | public LongVector()(Code) | | |
LongVector | public LongVector(int increment)(Code) | | |
LongVector | public LongVector(int initialSize, int increment)(Code) | | |
LongVector | public LongVector(long[] data)(Code) | | |
addElement | final public void addElement(long value)(Code) | | Append a int onto the vector.
Parameters: value - Int to add to the list |
addElements | final public void addElements(long value, int numberOfElements)(Code) | | Append several int values onto the vector.
Parameters: value - Int to add to the list |
binarySearch | final public int binarySearch(long key)(Code) | | |
contains | final public boolean contains(long 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 long elementAt(int i)(Code) | | Get the nth element.
Parameters: i - index of object to get object at given index |
getDataAsArray | public long[] getDataAsArray()(Code) | | |
indexOf | final public int indexOf(long 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(long 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(long 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(long 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(long 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.
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 |
setElementAt | final public void setElementAt(long 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 |
|
|