Package org.mlflow.tracking
Class RunsPage
- java.lang.Object
- 
- org.mlflow.tracking.RunsPage
 
- 
- All Implemented Interfaces:
- Page<Service.Run>
 
 public class RunsPage extends java.lang.Object implements Page<Service.Run> 
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Service.Run>getItems()Page<Service.Run>getNextPage()java.util.Optional<java.lang.String>getNextPageToken()intgetPageSize()booleanhasNextPage()
 
- 
- 
- 
Method Detail- 
getPageSizepublic int getPageSize() - Specified by:
- getPageSizein interface- Page<Service.Run>
- Returns:
- The number of runs in the page.
 
 - 
hasNextPagepublic boolean hasNextPage() - Specified by:
- hasNextPagein interface- Page<Service.Run>
- Returns:
- True if a token for the next page exists and isn't empty. Otherwise returns false.
 
 - 
getNextPageTokenpublic java.util.Optional<java.lang.String> getNextPageToken() - Specified by:
- getNextPageTokenin interface- Page<Service.Run>
- Returns:
- An optional with the token for the next page. Empty if the token doesn't exist or is empty.
 
 - 
getNextPagepublic Page<Service.Run> getNextPage() - Specified by:
- getNextPagein interface- Page<Service.Run>
- Returns:
- The next page of runs matching the search criteria. 
 If there are no more pages, an EmptyPagewill be returned.
 
 - 
getItemspublic java.util.List<Service.Run> getItems() - Specified by:
- getItemsin interface- Page<Service.Run>
- Returns:
- An iterable over the runs in this page.
 
 
- 
 
-