Class DoipSearchResults<T>

  • Type Parameters:
    T - either String for searchIds or DigitalObject for full search
    All Implemented Interfaces:
    java.lang.AutoCloseable, java.lang.Iterable<T>, SearchResults<T>

    public class DoipSearchResults<T>
    extends java.lang.Object
    implements SearchResults<T>
    Used internally by DoipClient to produce search results
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void close()
      Closes the search results, releasing the connection to the server.
      java.util.Iterator<T> iterator()
      Returns an Iterator of the search results (either String or DigitalObject).
      int size()
      Returns the full number of results across all pages, or -1 if the number is not available
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.lang.Iterable

        forEach
    • Constructor Detail

      • DoipSearchResults

        public DoipSearchResults​(DoipClientResponse resp,
                                 java.lang.Class<T> klass)
                          throws java.io.IOException
        Throws:
        java.io.IOException
    • Method Detail

      • size

        public int size()
        Description copied from interface: SearchResults
        Returns the full number of results across all pages, or -1 if the number is not available
        Specified by:
        size in interface SearchResults<T>
      • iterator

        public java.util.Iterator<T> iterator()
        Description copied from interface: SearchResults
        Returns an Iterator of the search results (either String or DigitalObject).
        Specified by:
        iterator in interface java.lang.Iterable<T>
        Specified by:
        iterator in interface SearchResults<T>
      • close

        public void close()
        Description copied from interface: SearchResults
        Closes the search results, releasing the connection to the server.
        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface SearchResults<T>