- All Implemented Interfaces:
Serializable
,Comparable<Desktop.Action>
,Constable
- Enclosing class:
Desktop
Represents an action type. Each platform supports a different
set of actions. You may use the
Desktop.isSupported(java.awt.Desktop.Action)
method to determine if the given action is supported by the
current platform.- Since:
- 1.6
- See Also:
-
Nested Class Summary
Nested classes/interfaces declared in class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionRepresents an AboutHandlerRepresents an AppForegroundListenerRepresents an AppHiddenListenerRepresents an AppReopenedListenerRepresents a ScreenSleepListenerRepresents a SystemSleepListenerRepresents a UserSessionListenerRepresents a HelpViewerRepresents a menu barRepresents an OpenFilesHandlerRepresents an OpenURIHandlerRepresents a PreferencesHandlerRepresents a PrintFilesHandlerRepresents a QuitHandlerRepresents a QuitStrategyRepresents a requestForegroundRepresents a SuddenTerminationRepresents a "browse" action.Represents a browse file directoryRepresents an "edit" action.Represents a "mail" action.Represents a move to trashRepresents an "open" action.Represents a "print" action. -
Method Summary
Modifier and TypeMethodDescriptionstatic Desktop.Action
Returns the enum constant of this class with the specified name.static Desktop.Action[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OPEN
Represents an "open" action.- See Also:
-
EDIT
Represents an "edit" action.- See Also:
-
PRINT
Represents a "print" action.- See Also:
-
MAIL
Represents a "mail" action.- See Also:
-
BROWSE
Represents a "browse" action.- See Also:
-
APP_EVENT_FOREGROUND
Represents an AppForegroundListener- Since:
- 9
- See Also:
-
APP_EVENT_HIDDEN
Represents an AppHiddenListener- Since:
- 9
- See Also:
-
APP_EVENT_REOPENED
Represents an AppReopenedListener- Since:
- 9
- See Also:
-
APP_EVENT_SCREEN_SLEEP
Represents a ScreenSleepListener- Since:
- 9
- See Also:
-
APP_EVENT_SYSTEM_SLEEP
Represents a SystemSleepListener- Since:
- 9
- See Also:
-
APP_EVENT_USER_SESSION
Represents a UserSessionListener- Since:
- 9
- See Also:
-
APP_ABOUT
Represents an AboutHandler- Since:
- 9
- See Also:
-
APP_PREFERENCES
Represents a PreferencesHandler- Since:
- 9
- See Also:
-
APP_OPEN_FILE
Represents an OpenFilesHandler- Since:
- 9
- See Also:
-
APP_PRINT_FILE
Represents a PrintFilesHandler- Since:
- 9
- See Also:
-
APP_OPEN_URI
Represents an OpenURIHandler- Since:
- 9
- See Also:
-
APP_QUIT_HANDLER
Represents a QuitHandler- Since:
- 9
- See Also:
-
APP_QUIT_STRATEGY
Represents a QuitStrategy- Since:
- 9
- See Also:
-
APP_SUDDEN_TERMINATION
Represents a SuddenTermination- Since:
- 9
- See Also:
-
APP_REQUEST_FOREGROUND
Represents a requestForeground- Since:
- 9
- See Also:
-
APP_HELP_VIEWER
Represents a HelpViewer- Since:
- 9
- See Also:
-
APP_MENU_BAR
Represents a menu bar- Since:
- 9
- See Also:
-
BROWSE_FILE_DIR
Represents a browse file directory- Since:
- 9
- See Also:
-
MOVE_TO_TRASH
Represents a move to trash- Since:
- 9
- See Also:
-
-
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
-