Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle WebCenter Portal
11g Release 1 (11.1.1.6.0)
E15995-05


oracle.wcps.property
Interface IPagedList<T>

Type Parameters:
T - a property service entity type.
All Known Implementing Classes:
PagedList

public interface IPagedList<T>

Represents a paged list based on a PaginationContext. This is created and returned when filtering the property service entities. Filtering uses filter context (IFilterContext), which contains a paginationContext to use.


Method Summary
 PaginationContext getCurrentPaginationContext()
          Returns the current pagination context.
 java.util.List<T> getList()
          The list of entities of type <T> for the current page.
 PaginationContext getNextPaginationContext()
          Returns the next pagination context.
 PaginationContext getPrevPaginationContext()
          Returns the previous pagination context.
 int getTotalCount()
          The total number of entities found in the system based on a filterContext.

 

Method Detail

getPrevPaginationContext

PaginationContext getPrevPaginationContext()
Returns the previous pagination context. Returns null if this is the first page.
Returns:
the previous paginationContext.

getCurrentPaginationContext

PaginationContext getCurrentPaginationContext()
Returns the current pagination context.
Returns:
the current paginationContext.

getNextPaginationContext

PaginationContext getNextPaginationContext()
Returns the next pagination context. Returns null if this is the last page.
Returns:
the next pagination context.

getTotalCount

int getTotalCount()
The total number of entities found in the system based on a filterContext.
Returns:
the total number of entities.

getList

java.util.List<T> getList()
The list of entities of type <T> for the current page.
Returns:
a list of the property service entities.

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle WebCenter Portal
11g Release 1 (11.1.1.6.0)
E15995-05


Copyright © 2009, 2012, Oracle and/or its affiliates. All rights reserved.