- All Implemented Interfaces:
Serializable
,Comparable<Desktop.Action>
,Constable
- Enclosing class:
- Desktop
public static enum Desktop.Action extends Enum<Desktop.Action>
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:
Desktop.isSupported(java.awt.Desktop.Action)
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description APP_ABOUT
Represents an AboutHandlerAPP_EVENT_FOREGROUND
Represents an AppForegroundListenerAPP_EVENT_HIDDEN
Represents an AppHiddenListenerAPP_EVENT_REOPENED
Represents an AppReopenedListenerAPP_EVENT_SCREEN_SLEEP
Represents a ScreenSleepListenerAPP_EVENT_SYSTEM_SLEEP
Represents a SystemSleepListenerAPP_EVENT_USER_SESSION
Represents a UserSessionListenerAPP_HELP_VIEWER
Represents a HelpViewerAPP_MENU_BAR
Represents a menu barAPP_OPEN_FILE
Represents an OpenFilesHandlerAPP_OPEN_URI
Represents an OpenURIHandlerAPP_PREFERENCES
Represents a PreferencesHandlerAPP_PRINT_FILE
Represents a PrintFilesHandlerAPP_QUIT_HANDLER
Represents a QuitHandlerAPP_QUIT_STRATEGY
Represents a QuitStrategyAPP_REQUEST_FOREGROUND
Represents a requestForegroundAPP_SUDDEN_TERMINATION
Represents a SuddenTerminationBROWSE
Represents a "browse" action.BROWSE_FILE_DIR
Represents a browse file directoryEDIT
Represents an "edit" action.MAIL
Represents a "mail" action.MOVE_TO_TRASH
Represents a move to trashOPEN
Represents an "open" action.PRINT
Represents a "print" action. -
Method Summary
Modifier and Type Method Description static Desktop.Action
valueOf(String name)
Returns the enum constant of this type with the specified name.static Desktop.Action[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
OPEN
Represents an "open" action.- See Also:
Desktop.open(java.io.File)
-
EDIT
Represents an "edit" action.- See Also:
Desktop.edit(java.io.File)
-
PRINT
Represents a "print" action.- See Also:
Desktop.print(java.io.File)
-
MAIL
Represents a "mail" action.- See Also:
Desktop.mail()
,Desktop.mail(java.net.URI)
-
BROWSE
Represents a "browse" action.- See Also:
Desktop.browse(java.net.URI)
-
APP_EVENT_FOREGROUND
Represents an AppForegroundListener- Since:
- 9
- See Also:
AppForegroundListener
-
APP_EVENT_HIDDEN
Represents an AppHiddenListener- Since:
- 9
- See Also:
AppHiddenListener
-
APP_EVENT_REOPENED
Represents an AppReopenedListener- Since:
- 9
- See Also:
AppReopenedListener
-
APP_EVENT_SCREEN_SLEEP
Represents a ScreenSleepListener- Since:
- 9
- See Also:
ScreenSleepListener
-
APP_EVENT_SYSTEM_SLEEP
Represents a SystemSleepListener- Since:
- 9
- See Also:
SystemSleepListener
-
APP_EVENT_USER_SESSION
Represents a UserSessionListener- Since:
- 9
- See Also:
UserSessionListener
-
APP_ABOUT
Represents an AboutHandler- Since:
- 9
- See Also:
Desktop.setAboutHandler(java.awt.desktop.AboutHandler)
-
APP_PREFERENCES
Represents a PreferencesHandler- Since:
- 9
- See Also:
Desktop.setPreferencesHandler(java.awt.desktop.PreferencesHandler)
-
APP_OPEN_FILE
Represents an OpenFilesHandler- Since:
- 9
- See Also:
Desktop.setOpenFileHandler(java.awt.desktop.OpenFilesHandler)
-
APP_PRINT_FILE
Represents a PrintFilesHandler- Since:
- 9
- See Also:
Desktop.setPrintFileHandler(java.awt.desktop.PrintFilesHandler)
-
APP_OPEN_URI
Represents an OpenURIHandler- Since:
- 9
- See Also:
Desktop.setOpenURIHandler(java.awt.desktop.OpenURIHandler)
-
APP_QUIT_HANDLER
Represents a QuitHandler- Since:
- 9
- See Also:
Desktop.setQuitHandler(java.awt.desktop.QuitHandler)
-
APP_QUIT_STRATEGY
Represents a QuitStrategy- Since:
- 9
- See Also:
Desktop.setQuitStrategy(java.awt.desktop.QuitStrategy)
-
APP_SUDDEN_TERMINATION
Represents a SuddenTermination- Since:
- 9
- See Also:
Desktop.enableSuddenTermination()
-
APP_REQUEST_FOREGROUND
Represents a requestForeground- Since:
- 9
- See Also:
Desktop.requestForeground(boolean)
-
APP_HELP_VIEWER
Represents a HelpViewer- Since:
- 9
- See Also:
Desktop.openHelpViewer()
-
APP_MENU_BAR
Represents a menu bar- Since:
- 9
- See Also:
Desktop.setDefaultMenuBar(javax.swing.JMenuBar)
-
BROWSE_FILE_DIR
Represents a browse file directory- Since:
- 9
- See Also:
Desktop.browseFileDirectory(java.io.File)
-
MOVE_TO_TRASH
Represents a move to trash- Since:
- 9
- See Also:
Desktop.moveToTrash(java.io.File)
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-