Enum EWorkflowElementCategory
- All Implemented Interfaces:
INamedUiElement, IElementCategory, Serializable, Comparable<EWorkflowElementCategory>
public enum EWorkflowElementCategory
extends Enum<EWorkflowElementCategory>
implements INamedUiElement, IElementCategory
Enumeration of built-in categories for workflow nodes and triggers. These categories are used for the drawer panel to
the left of the workflow designer. Workflow nodes and triggers are not restricted to these categories, they can also
define their own categories.
- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Field Summary
Fields inherited from interface INamedUiElement
ATTR_DISPLAY_NAME -
Method Summary
Modifier and TypeMethodDescriptionThe display name of this element in the given locale.getIcon()(Optional) If this method returns null, a default icon will be used.The name needs to be provided as it is used as the identifier of the category.(Optional) If this method returns null or a blank string, the category will be sorted by its localized name (IElementCategory.getName(Locale).static EWorkflowElementCategoryReturns the enum constant of this type with the specified name.static EWorkflowElementCategory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
MAIN_BUTTONS
-
MAIN_TRIGGER
-
MAIN_ACTION
-
MAIN_FLOW_CONTROL
-
MAIN_STATE_CHANGE
-
SUB_TRIGGER_BUTTON_SUBMIT
-
SUB_TRIGGER_BUTTON_SAVE
-
SUB_TRIGGER_BUTTON_NOSAVE
-
SUB_TRIGGER_BUTTON_ADVANCED
-
SUB_TRIGGER_SYSTEM
-
SUB_TRIGGER_FORM_RECORD_MESSAGE
-
SUB_TRIGGER_TIMED
-
SUB_TRIGGER_ERROR
-
SUB_ACTION_COMMON
-
SUB_ACTION_SERVLET_RESPONSE
-
SUB_ACTION_FILES
-
SUB_ACTION_DATA_QUERIES
-
SUB_ACTION_FORM_DATA
-
SUB_ACTION_FORM_RECORD
-
SUB_ACTION_FORM_RECORD_MESSAGE
-
SUB_ACTION_CHANGE_STATE
-
SUB_ACTION_END_POINT
-
SUB_ACTION_EXTERNAL_SERVICES
-
SUB_FLOW_CONTROL_CONDITION
-
SUB_FLOW_CONTROL_LOOP
-
SUB_FLOW_CONTROL_ERROR
-
SUB_FLOW_CONTROL_WRAPPER
-
MISC
-
DEPRECATED
-
-
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
-
getCategoryId
-
getDisplayName
Description copied from interface:INamedUiElementThe display name of this element in the given locale.- Specified by:
getDisplayNamein interfaceINamedUiElement- Parameters:
l- The locale to get the display name for.- Returns:
- The display name of this element in the given locale.
-
getName
Description copied from interface:IElementCategoryThe name needs to be provided as it is used as the identifier of the category.- Specified by:
getNamein interfaceIElementCategory- Parameters:
locale-Localefor which to get the category name.- Returns:
- The name of the category.
-
getSortKey
Description copied from interface:IElementCategory(Optional) If this method returns null or a blank string, the category will be sorted by its localized name (IElementCategory.getName(Locale).- Specified by:
getSortKeyin interfaceIElementCategory- Returns:
- The key by which the category is sorted.
-
getIcon
Description copied from interface:IElementCategory(Optional) If this method returns null, a default icon will be used.- Specified by:
getIconin interfaceIElementCategory- Returns:
IGuiIconfor displaying the category with an icon
-