public enum PageType extends Enum<PageType>
| Enum Constant and Description |
|---|
PAGE_TYPE_AMD
The page type amd.
|
PAGE_TYPE_DATA
The page type storing only data as a number of table rows.
|
PAGE_TYPE_META
The page type storing metadata as a set of subheaders.
|
PAGE_TYPE_MIX
The page type storing metadata as a set of subheaders and data as a number of table rows.
|
| Modifier and Type | Method and Description |
|---|---|
static PageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageType PAGE_TYPE_META
SasFileConstants.PAGE_META_TYPE_1 and SasFileConstants.PAGE_META_TYPE_2.public static final PageType PAGE_TYPE_MIX
SasFileConstants.PAGE_MIX_TYPE_1 and SasFileConstants.PAGE_MIX_TYPE_2.public static final PageType PAGE_TYPE_AMD
SasFileConstants.PAGE_AMD_TYPE.public static final PageType PAGE_TYPE_DATA
SasFileConstants.PAGE_DATA_TYPE.public static PageType[] values()
for (PageType c : PageType.values()) System.out.println(c);
public static PageType 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 © 2021. All rights reserved.