Constructors
Vector(Integer[])
Methods
parseString(String, String)
Parses a text into a vector. The fields in the string are separated by the given delimiter.This method does not support escaped characters.
removeAt(Integer)
Removes an element at the specified index.get(Integer)
Returns an element in the vector at the given position.If the index specified is out of bounds, a RunTimeException will be raised.
set(Integer, String)
Sets the value at the specified index.If the index specified is out of bounds, a RunTimeException will be raised.
size()
Returns the size of the vector.toIntegerArray()
Convert a vector to an integer array.Invalid values will be represented as null.
toStringArray()
Convert a vector to a string array.buildString(String)
Returns a string of all the elements in the vector, separated by the specified delimiter.not escape any characters which might be equal to the delimiter.