Package com.jalios.jcms.fileprocessor
Enum FileActionComponent.Operation
- java.lang.Object
-
- java.lang.Enum<FileActionComponent.Operation>
-
- com.jalios.jcms.fileprocessor.FileActionComponent.Operation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FileActionComponent.Operation>
- Enclosing interface:
- FileActionComponent
public static enum FileActionComponent.Operation extends java.lang.Enum<FileActionComponent.Operation>
Possible operation detected on a file
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FILE_CREATE
File was just created.FILE_CREATE_OR_UPDATE
File was detected as new or updated in a directory.FILE_DELETE
File was just deleted.FILE_OPERATION_POSTPONED
File was not modified but a previous operation was postponed.FILE_UPDATE
File was updated, or a generic update was requested through User Interface.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FileActionComponent.Operation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FileActionComponent.Operation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FILE_CREATE
public static final FileActionComponent.Operation FILE_CREATE
File was just created.Used only when file(s) are submitted after FileDocument creation through
FileProcessorDBListenerStoreListener
.
-
FILE_UPDATE
public static final FileActionComponent.Operation FILE_UPDATE
File was updated, or a generic update was requested through User Interface.Used when file is submitted by
FileProcessorDBListenerStoreListener
after FileDocument update or through any UI handler such asFileProcessorAdminHandler
or PdfConverterAdminHandler in plugins.
-
FILE_CREATE_OR_UPDATE
public static final FileActionComponent.Operation FILE_CREATE_OR_UPDATE
File was detected as new or updated in a directory.Used only when file(s) are submitted through detection of
DirectoryScanner
.
-
FILE_OPERATION_POSTPONED
public static final FileActionComponent.Operation FILE_OPERATION_POSTPONED
File was not modified but a previous operation was postponed.Used only when file(s) are submitted through
FileProcessorPostponedAlarmListener
.
-
FILE_DELETE
public static final FileActionComponent.Operation FILE_DELETE
File was just deleted.Used only when file(s) are submitted after FileDocument deletion through
FileProcessorDBListenerStoreListener
.
-
-
Method Detail
-
values
public static FileActionComponent.Operation[] 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 (FileActionComponent.Operation c : FileActionComponent.Operation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FileActionComponent.Operation valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-