public enum PageLayoutCellType extends Enum<PageLayoutCellType>
Enum Constant and Description |
---|
ASIDE
Aside column.
|
NORMAL
A Normal width column.
|
SIDEBARS
A sidebar column.
|
Modifier and Type | Method and Description |
---|---|
static PageLayoutCellType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageLayoutCellType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageLayoutCellType NORMAL
public static final PageLayoutCellType ASIDE
NORMAL
columns in the same section.
The common use case is: | ASIDE | NORMAL |public static final PageLayoutCellType SIDEBARS
ASIDE
.
The common use case is: |SIDEBARS| NORMAL |SIDEBARS|public static PageLayoutCellType[] values()
for (PageLayoutCellType c : PageLayoutCellType.values()) System.out.println(c);
public static PageLayoutCellType 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 © 2003–2020 Atlassian. All rights reserved.