Class Paged

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    AIList, DatasetList, LearningSessionList, OutputList, StatusList

    public class Paged
    extends java.lang.Object
    implements java.io.Serializable
    A base class inherited by other List objects that add Paging capabilities through properties such as count, previous, and next.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      Paged()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object other)
      internal
      int getCount()
      For DataRobot AI API list objects, this property will indicate the URL of the current page.
      java.lang.String getNext()
      For DataRobot AI API list objects, this property will indicate the URL of the next page.
      java.lang.String getPrevious()
      For DataRobot AI API list objects, this property will indicate the URL of the previous page.
      int hashCode()
      internal
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • Paged

        public Paged()
    • Method Detail

      • getCount

        public int getCount()
        For DataRobot AI API list objects, this property will indicate the URL of the current page.
        Returns:
        The current page number.
      • getPrevious

        public java.lang.String getPrevious()
        For DataRobot AI API list objects, this property will indicate the URL of the previous page.
        Returns:
        The previous page.
      • getNext

        public java.lang.String getNext()
        For DataRobot AI API list objects, this property will indicate the URL of the next page.
        Returns:
        The next page.
      • hashCode

        public int hashCode()
        internal
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object other)
        internal
        Overrides:
        equals in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object