public static enum ContentElement.Type extends java.lang.Enum<ContentElement.Type>
| Enum Constant and Description |
|---|
ACTIONBUTTON
This represents ActionButton that triggers some action.
|
HELPLINK_CUECARD
This represents a help link for cue cards.
|
HELPLINK_CUSTOMHELP
This represents a custom help link.
|
HELPLINK_DEVGUIDE
This represents a help link for developer guide.
|
HELPLINK_HELPTOPIC
This represents a help link for a particular help topic.
|
HELPLINK_STEPBYSTEP
This represents a help link for step by step guide.
|
HELPLINK_TUTORIAL
This represents a help link for tutorials.
|
HELPLINK_USERGUIDE
This represents a help link for user's guide.
|
HELPLINK_WHATISEE
This represents a help link for what I see description.
|
HYPERLINK
This represents all simple links inside the StepContent.
|
| Modifier and Type | Method and Description |
|---|---|
static ContentElement.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContentElement.Type[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final ContentElement.Type ACTIONBUTTON
public static final ContentElement.Type HYPERLINK
public static final ContentElement.Type HELPLINK_DEVGUIDE
public static final ContentElement.Type HELPLINK_STEPBYSTEP
public static final ContentElement.Type HELPLINK_HELPTOPIC
public static final ContentElement.Type HELPLINK_WHATISEE
public static final ContentElement.Type HELPLINK_CUECARD
public static final ContentElement.Type HELPLINK_TUTORIAL
public static final ContentElement.Type HELPLINK_USERGUIDE
public static final ContentElement.Type HELPLINK_CUSTOMHELP
public static ContentElement.Type[] values()
for (ContentElement.Type c : ContentElement.Type.values())
System.out.println(c);
public static ContentElement.Type 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