Enum DocumentFilingEvent.DocumentFilingAction
- java.lang.Object
-
- java.lang.Enum<DocumentFilingEvent.DocumentFilingAction>
-
- com.saperion.ngc.events.navigation.DocumentFilingEvent.DocumentFilingAction
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DocumentFilingEvent.DocumentFilingAction>
- Enclosing class:
- DocumentFilingEvent
public static enum DocumentFilingEvent.DocumentFilingAction extends java.lang.Enum<DocumentFilingEvent.DocumentFilingAction>
Filing actions.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_TO_FOLDER
Add documents to a folder.ADD_TO_NEW_FOLDER
Adds documents to a new folder.REMOVE_FROM_FOLDER
Removes a document from folders.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DocumentFilingEvent.DocumentFilingAction
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DocumentFilingEvent.DocumentFilingAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADD_TO_FOLDER
public static final DocumentFilingEvent.DocumentFilingAction ADD_TO_FOLDER
Add documents to a folder.
-
REMOVE_FROM_FOLDER
public static final DocumentFilingEvent.DocumentFilingAction REMOVE_FROM_FOLDER
Removes a document from folders.
-
ADD_TO_NEW_FOLDER
public static final DocumentFilingEvent.DocumentFilingAction ADD_TO_NEW_FOLDER
Adds documents to a new folder.
-
-
Method Detail
-
values
public static DocumentFilingEvent.DocumentFilingAction[] 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 (DocumentFilingEvent.DocumentFilingAction c : DocumentFilingEvent.DocumentFilingAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DocumentFilingEvent.DocumentFilingAction 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
-
-