public enum PageDir extends Enum<PageDir>
| Modifier and Type | Method and Description |
|---|---|
static PageDir |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageDir[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageDir BL
public static final PageDir BR
public static final PageDir TL
public static final PageDir TR
public static final PageDir RB
public static final PageDir RT
public static final PageDir LB
public static final PageDir LT
public static PageDir[] values()
for (PageDir c : PageDir.values()) System.out.println(c);
public static PageDir 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 © 2013. All Rights Reserved.