Package de.xima.fc.mdl.enums
Enum EWorkflowStateType
- java.lang.Object
-
- java.lang.Enum<EWorkflowStateType>
-
- de.xima.fc.mdl.enums.EWorkflowStateType
-
- All Implemented Interfaces:
INamedUiElement,Serializable,Comparable<EWorkflowStateType>
public enum EWorkflowStateType extends Enum<EWorkflowStateType> implements INamedUiElement
Enumeration ofWorkflowStates types that may be treated specially by the system.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Field Summary
-
Fields inherited from interface de.xima.fc.interfaces.INamedUiElement
ATTR_DISPLAY_NAME
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDisplayDescription(Locale locale)StringgetDisplayName(Locale locale)The display name of this element in the given locale.IGuiIcongetIcon()static EWorkflowStateTypevalueOf(String name)Returns the enum constant of this type with the specified name.static EWorkflowStateType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CUSTOM
public static final EWorkflowStateType CUSTOM
Custom state that was created by a backend user. Custom states may be set by the workflow configuration.
-
RECEIVED
public static final EWorkflowStateType RECEIVED
The default state when a form was newly submitted and no other state was set by the workflow.
-
-
Method Detail
-
values
public static EWorkflowStateType[] 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 (EWorkflowStateType c : EWorkflowStateType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EWorkflowStateType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getDisplayDescription
public String getDisplayDescription(Locale locale)
- Parameters:
locale- Locale for which to localize the description.- Returns:
- The localized description for this workflow state.
-
getDisplayName
public String getDisplayName(Locale locale)
Description copied from interface:INamedUiElementThe display name of this element in the given locale.- Specified by:
getDisplayNamein interfaceINamedUiElement- Parameters:
locale- The locale to get the display name for.- Returns:
- The display name of this element in the given locale.
-
getIcon
public IGuiIcon getIcon()
- Returns:
- The icon for this workflow state.
-
-