Package de.xima.fc.workflow.enums
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 de.xima.fc.interfaces.INamedUiElement
ATTR_DISPLAY_NAME
-
Method Summary
Modifier and TypeMethodDescriptiongetIcon()
(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 EWorkflowElementCategory
Returns 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_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_CHANGE_STATE
-
SUB_ACTION_END_POINT
-
SUB_ACTION_EXTERNAL_SERVICES
-
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
- Specified by:
getDisplayName
in interfaceINamedUiElement
- Returns:
- Wert, der das entsprechende Objekt an Oberfläche repräsentiert (wird i.A. zur Laufzeit ermittelt).
-
getName
Description copied from interface:IElementCategory
The name needs to be provided as it is used as the identifier of the category.- Specified by:
getName
in interfaceIElementCategory
- Parameters:
locale
-Locale
for 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:
getSortKey
in 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:
getIcon
in interfaceIElementCategory
- Returns:
IGuiIcon
for displaying the category with an icon
-