public enum PageLayoutType extends Enum<PageLayoutType>
Java class for PageLayoutType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PageLayoutType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="singlePage"/>
<enumeration value="oneColumn"/>
<enumeration value="twoColumnLeft"/>
<enumeration value="twoColumnRight"/>
<enumeration value="twoPageLeft"/>
<enumeration value="twoPageRight"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ONE_COLUMN |
SINGLE_PAGE |
TWO_COLUMN_LEFT |
TWO_COLUMN_RIGHT |
TWO_PAGE_LEFT |
TWO_PAGE_RIGHT |
| Modifier and Type | Method and Description |
|---|---|
static PageLayoutType |
fromValue(String v) |
String |
value() |
static PageLayoutType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageLayoutType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageLayoutType SINGLE_PAGE
public static final PageLayoutType ONE_COLUMN
public static final PageLayoutType TWO_COLUMN_LEFT
public static final PageLayoutType TWO_COLUMN_RIGHT
public static final PageLayoutType TWO_PAGE_LEFT
public static final PageLayoutType TWO_PAGE_RIGHT
public static PageLayoutType[] values()
for (PageLayoutType c : PageLayoutType.values()) System.out.println(c);
public static PageLayoutType 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 String value()
public static PageLayoutType fromValue(String v)
Copyright © 2017–2022 SoftVision Development GmbH, Fulda, Germany. All rights reserved.