public enum ContentsType extends java.lang.Enum<ContentsType> implements ValueEnum
HTMLFlow? This content may come from the contentsURL or be directly specified as HTMLFlow.contents.| Enum Constant and Description |
|---|
FRAGMENT The HTML content is treated as a snippet designed to integrate into the main page and is directly inserted into the DOM. |
PAGE The HTML content is treated as a standalone document and displayed in an isolated context using an IFRAME. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() |
static ContentsType | valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static ContentsType[] | values() Returns an array containing the constants of this enum type, in the order they are declared. |
public static final ContentsType PAGE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "page".
public static final ContentsType FRAGMENT
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "fragment".
public static ContentsType[] values()
for (ContentsType c : ContentsType.values()) System.out.println(c);
public static ContentsType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null