public static enum PageSectionContent.Region extends Enum<PageSectionContent.Region>
| Enum Constant and Description |
|---|
CENTER
the center region
|
LEFT
the left region
|
RIGHT
the right region
|
| Modifier and Type | Method and Description |
|---|---|
static PageSectionContent.Region |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageSectionContent.Region[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageSectionContent.Region CENTER
public static final PageSectionContent.Region LEFT
public static final PageSectionContent.Region RIGHT
public static PageSectionContent.Region[] values()
for (PageSectionContent.Region c : PageSectionContent.Region.values()) System.out.println(c);
public static PageSectionContent.Region 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 © 2016–2021. All rights reserved.