-
- 所有已知实现类:
-
Book
public interface Pageable
Pageable
实现代表一组要打印的页面。Pageable
对象返回集合中的总页数以及指定页面的PageFormat
和Printable
。- 另请参见:
-
PageFormat
,Printable
-
-
Field Summary
Fields Modifier and Type Field 描述 static int
UNKNOWN_NUMBER_OF_PAGES
如果Pageable
实现不知道其集合中的页数,则该常量将从getNumberOfPages
方法返回。
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 int
getNumberOfPages()
返回集合中的页数。PageFormat
getPageFormat(int pageIndex)
返回PageFormat
指定页面的pageIndex
。Printable
getPrintable(int pageIndex)
返回Printable
实例,负责渲染由pageIndex
指定的pageIndex
。
-
-
-
字段详细信息
-
UNKNOWN_NUMBER_OF_PAGES
@Native static final int UNKNOWN_NUMBER_OF_PAGES
如果一个Pageable
实现不知道其集合中的页数,则该常量将从getNumberOfPages
方法返回。- 另请参见:
- Constant Field Values
-
-
方法详细信息
-
getNumberOfPages
int getNumberOfPages()
返回集合中的页数。 要启用高级打印功能,建议Pageable
实现返回真实的页数,而不是UNKNOWN_NUMBER_OF_PAGES常量。- 结果
-
这个
Pageable
的页数。
-
getPageFormat
PageFormat getPageFormat(int pageIndex) throws IndexOutOfBoundsException
返回PageFormat
指定页面的pageIndex
。- 参数
-
pageIndex
- 正在请求PageFormat
的页面的零PageFormat
- 结果
-
PageFormat
描述了大小和方向。 - 异常
-
IndexOutOfBoundsException
- 如果Pageable
不包含请求的页面。
-
getPrintable
Printable getPrintable(int pageIndex) throws IndexOutOfBoundsException
返回Printable
实例,负责渲染由pageIndex
指定的pageIndex
。- 参数
-
pageIndex
- 正在请求Printable
的页面的零Printable
- 结果
-
Printable
呈现页面。 - 异常
-
IndexOutOfBoundsException
- if thePageable
does not contain the requested page.
-
-