Package de.xima.fc.mdl.enums
Enum EVerarbeitungsTyp
- java.lang.Object
-
- java.lang.Enum<EVerarbeitungsTyp>
-
- de.xima.fc.mdl.enums.EVerarbeitungsTyp
-
- All Implemented Interfaces:
INamedUiElement
,Serializable
,Comparable<EVerarbeitungsTyp>
public enum EVerarbeitungsTyp extends Enum<EVerarbeitungsTyp> implements INamedUiElement
Klasse zum Mappen von hinterlegten Verarbeitungsnamen zur entsprechenden Klasse- Author:
- XIMA MEDIA GmbH
-
-
Enum Constant Summary
-
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 String
getDisplayName(Locale l)
boolean
isStopsWorkflow()
String
toString()
static EVerarbeitungsTyp
valueOf(String name)
Returns the enum constant of this type with the specified name.static EVerarbeitungsTyp
valueOfOrNull(String processingKey)
static EVerarbeitungsTyp[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_STATUS
public static final EVerarbeitungsTyp CHANGE_STATUS
-
COMPRESS_AS_ZIP
public static final EVerarbeitungsTyp COMPRESS_AS_ZIP
-
COPY_TO_POSTFACH
public static final EVerarbeitungsTyp COPY_TO_POSTFACH
-
MOVE_TO_POSTFACH
public static final EVerarbeitungsTyp MOVE_TO_POSTFACH
-
COPY_TO_STATUS
public static final EVerarbeitungsTyp COPY_TO_STATUS
-
DB_SQL_STATEMENT
public static final EVerarbeitungsTyp DB_SQL_STATEMENT
-
DELETE_VORGANG
public static final EVerarbeitungsTyp DELETE_VORGANG
-
EMAIL
public static final EVerarbeitungsTyp EMAIL
-
XML_EXPORT
public static final EVerarbeitungsTyp XML_EXPORT
-
PERSISTENCE_EXPORT
public static final EVerarbeitungsTyp PERSISTENCE_EXPORT
-
EXTERNAL_RESOURCE
public static final EVerarbeitungsTyp EXTERNAL_RESOURCE
-
ADD_FILE_TO_VORGANG
public static final EVerarbeitungsTyp ADD_FILE_TO_VORGANG
-
PDF_FILL
public static final EVerarbeitungsTyp PDF_FILL
-
WORD_FILL
public static final EVerarbeitungsTyp WORD_FILL
-
SAVE_TO_FILESYSTEM
public static final EVerarbeitungsTyp SAVE_TO_FILESYSTEM
-
SHOW_TEMPLATE
public static final EVerarbeitungsTyp SHOW_TEMPLATE
-
PROVIDE_UPLOAD
public static final EVerarbeitungsTyp PROVIDE_UPLOAD
-
REDIRECT
public static final EVerarbeitungsTyp REDIRECT
-
STOP
public static final EVerarbeitungsTyp STOP
-
CALLBACK
public static final EVerarbeitungsTyp CALLBACK
-
XML_TO_FD
public static final EVerarbeitungsTyp XML_TO_FD
-
POST
public static final EVerarbeitungsTyp POST
-
RETURN_FILE
public static final EVerarbeitungsTyp RETURN_FILE
-
PLUGIN
public static final EVerarbeitungsTyp PLUGIN
-
WRITE_TO_FILE
public static final EVerarbeitungsTyp WRITE_TO_FILE
-
WRITE_TO_FORM
public static final EVerarbeitungsTyp WRITE_TO_FORM
-
RENEW_PROZESSID
public static final EVerarbeitungsTyp RENEW_PROZESSID
-
SEND_TO_SALESFORCE
public static final EVerarbeitungsTyp SEND_TO_SALESFORCE
-
-
Method Detail
-
values
public static EVerarbeitungsTyp[] 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 (EVerarbeitungsTyp c : EVerarbeitungsTyp.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EVerarbeitungsTyp 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
-
getDisplayName
public String getDisplayName(Locale l)
- Specified by:
getDisplayName
in interfaceINamedUiElement
- Returns:
- Wert, der das entsprechende Objekt an Oberfläche repräsentiert (wird i.A. zur Laufzeit ermittelt).
-
toString
public String toString()
- Overrides:
toString
in classEnum<EVerarbeitungsTyp>
-
isStopsWorkflow
public boolean isStopsWorkflow()
- Returns:
- Whether this action type stops other actions in the same state from being processed.
-
valueOfOrNull
public static EVerarbeitungsTyp valueOfOrNull(String processingKey)
-
-