public static enum FileActionComponent.Operation extends java.lang.Enum<FileActionComponent.Operation>
Enum Constant and 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.
|
Modifier and Type | Method and 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.
|
public static final FileActionComponent.Operation FILE_CREATE
Used only when file(s) are submitted after FileDocument
creation through FileProcessorDBListenerStoreListener
.
public static final FileActionComponent.Operation FILE_UPDATE
Used when file is submitted by FileProcessorDBListenerStoreListener
after FileDocument update or
through any UI handler such as FileProcessorAdminHandler
or PdfConverterAdminHandler in plugins.
public static final FileActionComponent.Operation FILE_CREATE_OR_UPDATE
Used only when file(s) are submitted through detection of DirectoryScanner
.
public static final FileActionComponent.Operation FILE_OPERATION_POSTPONED
Used only when file(s) are submitted through FileProcessorPostponedAlarmListener
.
public static final FileActionComponent.Operation FILE_DELETE
Used only when file(s) are submitted after FileDocument
deletion through FileProcessorDBListenerStoreListener
.
public static FileActionComponent.Operation[] values()
for (FileActionComponent.Operation c : FileActionComponent.Operation.values()) System.out.println(c);
public static FileActionComponent.Operation valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2001-2017 Jalios SA. All Rights Reserved.