Package com.adobe.aemds.guide.utils
Enum GuideJsonHtmlEmitterFlag
- java.lang.Object
-
- java.lang.Enum<GuideJsonHtmlEmitterFlag>
-
- com.adobe.aemds.guide.utils.GuideJsonHtmlEmitterFlag
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GuideJsonHtmlEmitterFlag>
public enum GuideJsonHtmlEmitterFlag extends java.lang.Enum<GuideJsonHtmlEmitterFlag>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GuideJsonHtmlEmitterFlag
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GuideJsonHtmlEmitterFlag[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GET_CHILD_PANEL_JSON
public static final GuideJsonHtmlEmitterFlag GET_CHILD_PANEL_JSON
-
GET_CHILD_FORM_JSON
public static final GuideJsonHtmlEmitterFlag GET_CHILD_FORM_JSON
-
GET_JSON_FOR_ALL_LAZY_CHILDERN
public static final GuideJsonHtmlEmitterFlag GET_JSON_FOR_ALL_LAZY_CHILDERN
-
GET_CHILD_PANEL_HTML
public static final GuideJsonHtmlEmitterFlag GET_CHILD_PANEL_HTML
-
GET_CHILD_FORM_HTML
public static final GuideJsonHtmlEmitterFlag GET_CHILD_FORM_HTML
-
GET_HTML_FOR_ALL_LAZY_CHILDREN
public static final GuideJsonHtmlEmitterFlag GET_HTML_FOR_ALL_LAZY_CHILDREN
-
GET_RENDER_JSON_FOR_PARENT_FORM
public static final GuideJsonHtmlEmitterFlag GET_RENDER_JSON_FOR_PARENT_FORM
-
GET_RENDER_HTML_FOR_PARENT_FORM
public static final GuideJsonHtmlEmitterFlag GET_RENDER_HTML_FOR_PARENT_FORM
-
GET_PIGGY_BANKED_JSON
public static final GuideJsonHtmlEmitterFlag GET_PIGGY_BANKED_JSON
-
-
Method Detail
-
values
public static GuideJsonHtmlEmitterFlag[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GuideJsonHtmlEmitterFlag c : GuideJsonHtmlEmitterFlag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GuideJsonHtmlEmitterFlag valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-