Enum FileActionEvent.FileAction
- java.lang.Object
-
- java.lang.Enum<FileActionEvent.FileAction>
-
- com.saperion.ngc.events.resultset.FileActionEvent.FileAction
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FileActionEvent.FileAction>
- Enclosing class:
- FileActionEvent
public static enum FileActionEvent.FileAction extends java.lang.Enum<FileActionEvent.FileAction>
File actions.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FileActionEvent.FileAction
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FileActionEvent.FileAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPEN
public static final FileActionEvent.FileAction OPEN
Open file.
-
RE_OPEN
public static final FileActionEvent.FileAction RE_OPEN
Re-open file.
-
EDIT
public static final FileActionEvent.FileAction EDIT
Edit file.
-
DELETE
public static final FileActionEvent.FileAction DELETE
Delete file.
-
CREATE
public static final FileActionEvent.FileAction CREATE
Create new file.
-
ADD_REGISTER
public static final FileActionEvent.FileAction ADD_REGISTER
Add a new register to an existing eFile.
-
-
Method Detail
-
values
public static FileActionEvent.FileAction[] 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 (FileActionEvent.FileAction c : FileActionEvent.FileAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FileActionEvent.FileAction 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
-
-