public enum SectionType extends Enum<SectionType>
| Enum Constant and Description |
|---|
COLUMN_SECTION |
CONTINUOUS |
EVEN_PAGE_SECTION |
NEXT_PAGE |
ODD_PAGE_SECTION |
| Modifier and Type | Method and Description |
|---|---|
static SectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SectionType NEXT_PAGE
public static final SectionType ODD_PAGE_SECTION
public static final SectionType EVEN_PAGE_SECTION
public static final SectionType CONTINUOUS
public static final SectionType COLUMN_SECTION
public static SectionType[] values()
for (SectionType c : SectionType.values()) System.out.println(c);
public static SectionType 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 null