|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<GridPagerPosition> org.apache.tapestry5.corelib.data.GridPagerPosition
public enum GridPagerPosition
Used by the Grid
component to control where the pager portion of the Grid should be displayed.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final GridPagerPosition TOP
public static final GridPagerPosition BOTTOM
public static final GridPagerPosition BOTH
public static final GridPagerPosition NONE
Method Detail |
---|
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 name
NullPointerException
- if the argument is nullpublic boolean isMatchBottom()
public boolean isMatchTop()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |