com.jalios.jcms.fileprocessor
Enum FileActionComponent.Operation

java.lang.Object
  extended by java.lang.Enum<FileActionComponent.Operation>
      extended by com.jalios.jcms.fileprocessor.FileActionComponent.Operation
All Implemented Interfaces:
Serializable, Comparable<FileActionComponent.Operation>
Enclosing interface:
FileActionComponent

public static enum FileActionComponent.Operation
extends Enum<FileActionComponent.Operation>

Possible operation detected on a file


Enum Constant Summary
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_UPDATE
          File was updated, or a generic update was requested through User Interface.
 
Method Summary
static FileActionComponent.Operation valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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 as FileProcessorAdminHandler 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_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(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 name
NullPointerException - if the argument is null


Copyright © 2001-2010 Jalios SA. All Rights Reserved.