Enum Class DocumentFilingEvent.DocumentFilingAction
java.lang.Object
java.lang.Enum<DocumentFilingEvent.DocumentFilingAction>
com.saperion.ngc.events.navigation.DocumentFilingEvent.DocumentFilingAction
- All Implemented Interfaces:
Serializable
,Comparable<DocumentFilingEvent.DocumentFilingAction>
,Constable
- Enclosing class:
- DocumentFilingEvent
public static enum DocumentFilingEvent.DocumentFilingAction
extends Enum<DocumentFilingEvent.DocumentFilingAction>
Filing actions.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAdd documents to a folder.Adds documents to a new folder.Removes a document from folders. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ADD_TO_FOLDER
Add documents to a folder. -
REMOVE_FROM_FOLDER
Removes a document from folders. -
ADD_TO_NEW_FOLDER
Adds documents to a new folder.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-