Class ResultList


  • public final class ResultList
    extends java.lang.Object
    Defines a list of Result.
    Since:
    2.3.0
    • Constructor Summary

      Constructors 
      Constructor Description
      ResultList()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void add​(Result dataResult)
      Adds a Result object to this ResultList.
      Result get​(int index)
      Gets a Result object from this ResultList from the given index number.
      java.util.Iterator<Result> getDataResults()
      Returns an iterator over the elements in this list in proper sequence.
      int getSize()
      Returns the number of elements in this list.
      boolean isEmpty()
      Returns true if this list contains no elements.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ResultList

        public ResultList()
    • Method Detail

      • add

        public void add​(Result dataResult)
        Adds a Result object to this ResultList.
      • get

        public Result get​(int index)
        Gets a Result object from this ResultList from the given index number.
      • getSize

        public int getSize()
        Returns the number of elements in this list.
      • getDataResults

        public java.util.Iterator<Result> getDataResults()
        Returns an iterator over the elements in this list in proper sequence.
      • isEmpty

        public boolean isEmpty()
        Returns true if this list contains no elements.