Enum Class PaginatorMode
- All Implemented Interfaces:
- Serializable,- Comparable<PaginatorMode>,- Constable
Describes the mode of automatically displayed paginator.
- Since:
- 5.15.0, 6.7.0
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionA paginator is selected and displayed automatically.If a paginator is desired, it must be specified on the page, e.g. with a<tc:paginatorList>inside of a<tc:paginatorPanel>tag.The paginator is displayed as a list.The page can be selected directly.The row can be selected directly.Deprecated, for removal: This API element is subject to removal in a future version.
- 
Field SummaryFields
- 
Method SummaryModifier and TypeMethodDescriptionstatic PaginatorModestatic PaginatorModeReturns the enum constant of this class with the specified name.static PaginatorMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
autoA paginator is selected and displayed automatically. Will be the default in future versions.
- 
customIf a paginator is desired, it must be specified on the page, e.g. with a<tc:paginatorList>inside of a<tc:paginatorPanel>tag.
- 
listThe paginator is displayed as a list.
- 
pageThe page can be selected directly.
- 
rowThe row can be selected directly.
- 
useShowAttributes@Deprecated(since="5.15.0, 6.7.0", forRemoval=true) public static final PaginatorMode useShowAttributesDeprecated, for removal: This API element is subject to removal in a future version.Please useautoif possible, or write a custom paginator.The show attributes of the sheet (e.g. showDirectLinks, showPageRange, showPageLinks, showRowCount) are used to display the paginator. This is the default, and emulates the old behavior.
 
- 
- 
Field Details- 
AUTO- See Also:
 
- 
CUSTOM- See Also:
 
- 
LIST- See Also:
 
- 
PAGE- See Also:
 
- 
ROW- See Also:
 
- 
USE_SHOW_ATTRIBUTESDeprecated, for removal: This API element is subject to removal in a future version.- See Also:
 
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum class has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
parse- Parameters:
- name- Name of the PaginatorMode.
- Throws:
- IllegalArgumentException- When the name doesn't match any- PaginatorMode.
 
 
- 
autoif possible, or write a custom paginator.