Package be.gaudry.swing.file.action
Enum Class EFileAction
- All Implemented Interfaces:
Serializable
,Comparable<EFileAction>
,Constable
\n
Provided by the broldev.file.finder.swing project.
- Since:
- 1.0 (Mar 19, 2009), broldev.file.finder.swing 0.0.1-SNAPSHOT dependency
- Version:
- 1.0 (Mar 19, 2009)
- Author:
- Steph GAUDRY
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptioncopy a file into the clipboardUsed to give another actionRepresents a "delete" action.Represents a Windows "Open with..." action.paste a file from the clipboardRepresents a "rename" action.Represents a "tag and rename" action. -
Method Summary
Modifier and TypeMethodDescriptionstatic EFileAction
Returns the enum constant of this class with the specified name.static EFileAction[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OPEN
- See Also:
Desktop.Action.OPEN
-
OPENWITH
Represents a Windows "Open with..." action. -
EDIT
- See Also:
Desktop.Action.EDIT
-
PRINT
- See Also:
Desktop.Action.PRINT
-
BROWSE
- See Also:
Desktop.Action.BROWSE
-
RENAME
Represents a "rename" action. -
TAG_RENAME
Represents a "tag and rename" action. -
DELETE
Represents a "delete" action. -
COPY
copy a file into the clipboard -
PASTE
paste a file from the clipboard -
CUSTOM
Used to give another action
-
-
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
-