public enum PageLayoutMode extends java.lang.Enum<PageLayoutMode>
| Enum Constant and Description |
|---|
BOX
Box layout mode.
|
FLOW
Flow layout mode.
|
| Modifier and Type | Method and Description |
|---|---|
static PageLayoutMode |
fromInt(int value) |
int |
getValue() |
static PageLayoutMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PageLayoutMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageLayoutMode BOX
public static final PageLayoutMode FLOW
public static PageLayoutMode[] values()
for (PageLayoutMode c : PageLayoutMode.values()) System.out.println(c);
public static PageLayoutMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getValue()
public static PageLayoutMode fromInt(int value)