Interface IDocumentumResult

  • All Superinterfaces:
    java.rmi.Remote

    public interface IDocumentumResult
    extends java.rmi.Remote
    This interface represents a streamed resultset from a documentum DQL query.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String _rcsid  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void close()
      Close and release the resources for this resultset.
      java.lang.String getStringValue​(java.lang.String valueName)
      Get a string result value
      boolean isValidRow()
      Check if we are done with the resultset.
      void nextRow()
      Advance to the next row.
    • Method Detail

      • isValidRow

        boolean isValidRow()
                    throws DocumentumException,
                           java.rmi.RemoteException
        Check if we are done with the resultset.
        Returns:
        true if there is still a valid row to read out of, or false if the list is done.
        Throws:
        DocumentumException
        java.rmi.RemoteException
      • getStringValue

        java.lang.String getStringValue​(java.lang.String valueName)
                                 throws DocumentumException,
                                        java.rmi.RemoteException
        Get a string result value
        Throws:
        DocumentumException
        java.rmi.RemoteException