Package org.odmg

Interface DArray

All Superinterfaces:
Collection, DCollection, Iterable, List, SequencedCollection

public interface DArray extends DCollection, List
The interface that defines the operations of an ODMG array,
not yet available in RasDaMan.
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)
  • Method Details

    • resize

      void resize(int newSize)
      Resize the array to have newSize elements.
      Parameters:
      newSize - The new size of the array.