| org.odmg.DArray
All known Subclasses: org.apache.ojb.odmg.collections.DListImpl,
DArray | public interface DArray extends org.odmg.DCollection,java.util.List(Code) | | The interface that defines the operations of an ODMG array.
Nearly all of its operations are defined by the JavaSoft List interface.
All of the operations defined by the JavaSoft List
interface are supported by an ODMG implementation of DArray ,
the exception UnsupportedOperationException is not thrown when a
call is made to any of the List methods.
An instance of a class implementing this interface can be obtained
by calling the method Implementation.newDArray .
author: David Jordan (as Java Editor of the Object Data Management Group) version: ODMG 3.0 |
Method Summary | |
public void | resize(int newSize) Resize the array to have newSize elements. |
resize | public void resize(int newSize)(Code) | | Resize the array to have newSize elements.
Parameters: newSize - The new size of the array. |
|
|