public enum GridPagerPosition extends Enum<GridPagerPosition>
Grid
component to control where the pager portion of the Grid should be displayed.Enum Constant and Description |
---|
BOTH
Show the pager above and below the Grid's table.
|
BOTTOM
Position the pager below the Grid's table (this is the default).
|
NONE
Don't show a pager (the application will need to supply its own navigation mechanism).
|
TOP
Position the pager above the Grid's table.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isMatchBottom() |
boolean |
isMatchTop() |
static GridPagerPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridPagerPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridPagerPosition TOP
public static final GridPagerPosition BOTTOM
public static final GridPagerPosition BOTH
public static final GridPagerPosition NONE
public static GridPagerPosition[] values()
for (GridPagerPosition c : GridPagerPosition.values()) System.out.println(c);
public static GridPagerPosition 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 nullpublic boolean isMatchBottom()
public boolean isMatchTop()
5.6.3 - Copyright © 2003-2021 The Apache Software Foundation.