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

Variable Index

 o _array
double array.

Constructor Index

 o IdoubleVector()

Method Index

 o _allocate(int, int)
IXVector _allocate implementation.
 o _copy(int, int, int)
IXVector _copy implementation.
 o _unset(int, int)
IXVector _unset implementation.
 o addElement(double)
Add element to the end.
 o elementAt(int)
Get element at given index.
 o insertElementAt(double, int)
Insert an element at given index.
 o removeElementAt(int)
Remove an element at given index.
 o setElementAt(double, int)
Set element at given index.

Variables

 o _array
 protected double _array[]
double array.

Constructors

 o IdoubleVector
 public IdoubleVector()

Methods

 o _allocate
 protected void _allocate(int length,
                          int keepLength)
IXVector _allocate implementation.

Overrides:
_allocate in class IXVector
 o _copy
 protected void _copy(int sourceIndex,
                      int destIndex,
                      int length)
IXVector _copy implementation.

Overrides:
_copy in class IXVector
 o _unset
 protected void _unset(int index,
                       int length)
IXVector _unset implementation.

Overrides:
_unset in class IXVector
 o elementAt
 public final double elementAt(int index)
Get element at given index.

 o setElementAt
 public final void setElementAt(double element,
                                int index)
Set element at given index.

 o addElement
 public final void addElement(double element)
Add element to the end.

 o insertElementAt
 public final void insertElementAt(double element,
                                   int index)
Insert an element at given index.

 o removeElementAt
 public final double removeElementAt(int index)
Remove an element at given index.


All Packages  Class Hierarchy  This Package  Previous  Next  Index