All Packages Class Hierarchy This Package Previous Next Index
Class com.micronova.util.IdoubleVector
java.lang.Object
|
+----com.micronova.util.IXVector
|
+----com.micronova.util.IdoubleVector
- public class IdoubleVector
- extends IXVector
Vector of 'double's (not 'Double').
- Version:
- 1.0
-
_array
- double array.
-
IdoubleVector()
-
-
_allocate(int, int)
- IXVector _allocate implementation.
-
_copy(int, int, int)
- IXVector _copy implementation.
-
_unset(int, int)
- IXVector _unset implementation.
-
addElement(double)
- Add element to the end.
-
elementAt(int)
- Get element at given index.
-
insertElementAt(double, int)
- Insert an element at given index.
-
removeElementAt(int)
- Remove an element at given index.
-
setElementAt(double, int)
- Set element at given index.
_array
protected double _array[]
- double array.
IdoubleVector
public IdoubleVector()
_allocate
protected void _allocate(int length,
int keepLength)
- IXVector _allocate implementation.
- Overrides:
- _allocate in class IXVector
_copy
protected void _copy(int sourceIndex,
int destIndex,
int length)
- IXVector _copy implementation.
- Overrides:
- _copy in class IXVector
_unset
protected void _unset(int index,
int length)
- IXVector _unset implementation.
- Overrides:
- _unset in class IXVector
elementAt
public final double elementAt(int index)
- Get element at given index.
setElementAt
public final void setElementAt(double element,
int index)
- Set element at given index.
addElement
public final void addElement(double element)
- Add element to the end.
insertElementAt
public final void insertElementAt(double element,
int index)
- Insert an element at given index.
removeElementAt
public final double removeElementAt(int index)
- Remove an element at given index.
All Packages Class Hierarchy This Package Previous Next Index