public enum ContentsType extends java.lang.Enum<ContentsType> implements ValueEnum
HTMLFlow's contentsURL?| Enum Constant and Description |
|---|
FRAGMENT the default setting - indicates that HTML loaded from the contentsURL is assumed to be an HTML fragment rather than a complete page. |
PAGE the contentsURL is assumed to be a standalone HTML page, and is loaded in 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
contentsURL is assumed to be a standalone HTML page, and is loaded in an IFRAME. 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
contentsURL is assumed to be an HTML fragment rather than a complete page. 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