Package de.xima.fc.mdl.enums
Enum EProtocolEntryProcessType
- java.lang.Object
-
- java.lang.Enum<EProtocolEntryProcessType>
-
- de.xima.fc.mdl.enums.EProtocolEntryProcessType
-
- All Implemented Interfaces:
INamedUiElement,Serializable,Comparable<EProtocolEntryProcessType>
public enum EProtocolEntryProcessType extends Enum<EProtocolEntryProcessType> implements INamedUiElement
- Author:
- XIMA MEDIA GmbH
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIONAPPOINTMENT_CREATEDAPPOINTMENT_DELETEDAPPOINTMENT_UPDATEDAPPOINTMENT_VALIDATION_FAILEDATTACH_FILEATTACHMENT_DELETEDATTACHMENT_POSTPROCESSEDATTACHMENT_UPDATEDCOMMENTCORRECTIONCREATEDCREATED_CLONEDELETEDINFOMALWARE_DETECTEDWhen aIMalwareScannerdetected malware in a file.MESSAGEQUARTZ_JOB_CREATEDQUARTZ_JOB_DELETEDQUARTZ_JOB_INVALID_DATE_FORMATQUARTZ_JOB_UPDATEDSTATUS_CHANGESTATUS_RESETTRIGGER_FIREDUSER_LOG_MESSAGEA custom log message created by the user.E.g.VERSION_CHANGE
-
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 StringgetDisplayName(Locale l)The display name of this element in the given locale.StringgetDisplayName(Locale l, String param)StringgetIconClass()static EProtocolEntryProcessTypevalueOf(String name)Returns the enum constant of this type with the specified name.static EProtocolEntryProcessType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTION
public static final EProtocolEntryProcessType ACTION
-
APPOINTMENT_CREATED
public static final EProtocolEntryProcessType APPOINTMENT_CREATED
-
APPOINTMENT_DELETED
public static final EProtocolEntryProcessType APPOINTMENT_DELETED
-
APPOINTMENT_UPDATED
public static final EProtocolEntryProcessType APPOINTMENT_UPDATED
-
APPOINTMENT_VALIDATION_FAILED
public static final EProtocolEntryProcessType APPOINTMENT_VALIDATION_FAILED
-
STATUS_CHANGE
public static final EProtocolEntryProcessType STATUS_CHANGE
-
STATUS_RESET
public static final EProtocolEntryProcessType STATUS_RESET
-
TRIGGER_FIRED
public static final EProtocolEntryProcessType TRIGGER_FIRED
-
CORRECTION
public static final EProtocolEntryProcessType CORRECTION
-
VERSION_CHANGE
public static final EProtocolEntryProcessType VERSION_CHANGE
-
ATTACH_FILE
public static final EProtocolEntryProcessType ATTACH_FILE
-
ATTACHMENT_DELETED
public static final EProtocolEntryProcessType ATTACHMENT_DELETED
-
ATTACHMENT_UPDATED
public static final EProtocolEntryProcessType ATTACHMENT_UPDATED
-
ATTACHMENT_POSTPROCESSED
public static final EProtocolEntryProcessType ATTACHMENT_POSTPROCESSED
-
COMMENT
public static final EProtocolEntryProcessType COMMENT
-
INFO
public static final EProtocolEntryProcessType INFO
-
DELETED
public static final EProtocolEntryProcessType DELETED
-
MESSAGE
public static final EProtocolEntryProcessType MESSAGE
-
CREATED_CLONE
public static final EProtocolEntryProcessType CREATED_CLONE
-
CREATED
public static final EProtocolEntryProcessType CREATED
-
QUARTZ_JOB_CREATED
public static final EProtocolEntryProcessType QUARTZ_JOB_CREATED
-
QUARTZ_JOB_UPDATED
public static final EProtocolEntryProcessType QUARTZ_JOB_UPDATED
-
QUARTZ_JOB_DELETED
public static final EProtocolEntryProcessType QUARTZ_JOB_DELETED
-
QUARTZ_JOB_INVALID_DATE_FORMAT
public static final EProtocolEntryProcessType QUARTZ_JOB_INVALID_DATE_FORMAT
-
MALWARE_DETECTED
public static final EProtocolEntryProcessType MALWARE_DETECTED
When aIMalwareScannerdetected malware in a file.
-
USER_LOG_MESSAGE
public static final EProtocolEntryProcessType USER_LOG_MESSAGE
A custom log message created by the user.E.g. such as those created by EWorkflowNodeType#FC_LOG_ENTRY log entry actions}.
-
-
Method Detail
-
values
public static EProtocolEntryProcessType[] 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 (EProtocolEntryProcessType c : EProtocolEntryProcessType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EProtocolEntryProcessType 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)
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.
-
getIconClass
public String getIconClass()
-
-