public static enum Options.PagingType extends Enum<Options.PagingType>
| Enum Constant and Description |
|---|
full
'First', 'Previous', 'Next' and 'Last' buttons
|
full_numbers
'First', 'Previous', 'Next' and 'Last' buttons, plus page numbers
|
numbers |
simple
'Previous' and 'Next' buttons only
|
simple_numbers
'Previous' and 'Next' buttons, plus page numbers
|
| Modifier and Type | Method and Description |
|---|---|
static Options.PagingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Options.PagingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Options.PagingType numbers
public static final Options.PagingType simple
public static final Options.PagingType simple_numbers
public static final Options.PagingType full
public static final Options.PagingType full_numbers
public static Options.PagingType[] values()
for (Options.PagingType c : Options.PagingType.values()) System.out.println(c);
public static Options.PagingType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2025. All rights reserved.