Package de.xima.fc.mdl.enums
Enum EElementHelpPageTargetType
- All Implemented Interfaces:
Serializable
,Comparable<EElementHelpPageTargetType>
Enumeration of how how a workflow element can provide the user with a usage help page.
- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA custom external link.A custom HTML page.A link to an entry in the official formcycle help pages. -
Method Summary
Modifier and TypeMethodDescriptionstatic EElementHelpPageTargetType
Returns the enum constant of this type with the specified name.static EElementHelpPageTargetType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
EXTERNAL_LINK
A custom external link. Must be an absolute link to an existing page. -
HTML_DOCUMENT
A custom HTML page. Must be a complete HTML file with all script and style that are required. -
OFFICIAL_HELP_PAGE
A link to an entry in the official formcycle help pages. Must be a relative URL, e.g./xwiki/bin/view/Formcycle/Designer/Workflow/Actions/CreateTextFile
.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-