| |
|
| java.lang.Object org.ozoneDB.DxLib.DxObject org.ozoneDB.DxLib.DxAbstractCollection org.ozoneDB.DxLib.DxAbstractBag org.ozoneDB.DxLib.DxArrayBag
All known Subclasses: org.ozoneDB.DxLib.DxArrayDeque,
serialVersionUID | final static long serialVersionUID(Code) | | |
DxArrayBag | public DxArrayBag()(Code) | | |
DxArrayBag | public DxArrayBag(int initSpace)(Code) | | |
addAtIndex | public synchronized Object addAtIndex(Object obj, 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 returned.
The index must be a value greater than or equal to 0. The size of the
array will grow if the specified index is greater than the current size.
|
addBack | public synchronized boolean addBack(Object obj)(Code) | | |
addFront | public synchronized boolean addFront(Object obj)(Code) | | |
clear | public synchronized void clear()(Code) | | |
decCounter | public void decCounter()(Code) | | |
deleteAtIndex | public synchronized Object deleteAtIndex(int index)(Code) | | Deletes the component at the specified index. Each component in this
array 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.
The index must be a value greater than or equal to 0 and less than the
current size.
|
insertAtIndex | public synchronized void insertAtIndex(Object obj, int index)(Code) | | Inserts the specified object as a component at the specified index. Each
component with an index greater or equal to the specified index is
shifted upward to have an index one greater than the value it had
previously. The index must be a value greater than or equal to 0 and less
than or equal to the current size of the vector.
|
isEmpty | public boolean isEmpty()(Code) | | |
removeAtIndex | public synchronized Object removeAtIndex(int index)(Code) | | Sets the component at the specified index to be null. The previous
component at that position is returned. The index must be a value
greater than or equal to 0 and less than the current size.
|
Fields inherited from org.ozoneDB.DxLib.DxAbstractBag | final static long serialVersionUID(Code)(Java Doc)
|
Fields inherited from org.ozoneDB.DxLib.DxAbstractCollection | final static long serialVersionUID(Code)(Java Doc)
|
Fields inherited from org.ozoneDB.DxLib.DxObject | final static long serialVersionUID(Code)(Java Doc)
|
|
|
|