- 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 SummaryEnum Constants Enum Constant Description APP_ABOUTRepresents an AboutHandlerAPP_EVENT_FOREGROUNDRepresents an AppForegroundListenerAPP_EVENT_HIDDENRepresents an AppHiddenListenerAPP_EVENT_REOPENEDRepresents an AppReopenedListenerAPP_EVENT_SCREEN_SLEEPRepresents a ScreenSleepListenerAPP_EVENT_SYSTEM_SLEEPRepresents a SystemSleepListenerAPP_EVENT_USER_SESSIONRepresents a UserSessionListenerAPP_HELP_VIEWERRepresents a HelpViewerAPP_MENU_BARRepresents a menu barAPP_OPEN_FILERepresents an OpenFilesHandlerAPP_OPEN_URIRepresents an OpenURIHandlerAPP_PREFERENCESRepresents a PreferencesHandlerAPP_PRINT_FILERepresents a PrintFilesHandlerAPP_QUIT_HANDLERRepresents a QuitHandlerAPP_QUIT_STRATEGYRepresents a QuitStrategyAPP_REQUEST_FOREGROUNDRepresents a requestForegroundAPP_SUDDEN_TERMINATIONRepresents a SuddenTerminationBROWSERepresents a "browse" action.BROWSE_FILE_DIRRepresents a browse file directoryEDITRepresents an "edit" action.MAILRepresents a "mail" action.MOVE_TO_TRASHRepresents a move to trashOPENRepresents an "open" action.PRINTRepresents a "print" action.
- 
Method SummaryModifier and Type Method Description static Desktop.ActionvalueOf(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- 
OPENRepresents an "open" action.- See Also:
- Desktop.open(java.io.File)
 
- 
EDITRepresents an "edit" action.- See Also:
- Desktop.edit(java.io.File)
 
- 
PRINTRepresents a "print" action.- See Also:
- Desktop.print(java.io.File)
 
- 
MAILRepresents a "mail" action.- See Also:
- Desktop.mail(),- Desktop.mail(java.net.URI)
 
- 
BROWSERepresents a "browse" action.- See Also:
- Desktop.browse(java.net.URI)
 
- 
APP_EVENT_FOREGROUNDRepresents an AppForegroundListener- Since:
- 9
- See Also:
- AppForegroundListener
 
- 
APP_EVENT_HIDDENRepresents an AppHiddenListener- Since:
- 9
- See Also:
- AppHiddenListener
 
- 
APP_EVENT_REOPENEDRepresents an AppReopenedListener- Since:
- 9
- See Also:
- AppReopenedListener
 
- 
APP_EVENT_SCREEN_SLEEPRepresents a ScreenSleepListener- Since:
- 9
- See Also:
- ScreenSleepListener
 
- 
APP_EVENT_SYSTEM_SLEEPRepresents a SystemSleepListener- Since:
- 9
- See Also:
- SystemSleepListener
 
- 
APP_EVENT_USER_SESSIONRepresents a UserSessionListener- Since:
- 9
- See Also:
- UserSessionListener
 
- 
APP_ABOUTRepresents an AboutHandler- Since:
- 9
- See Also:
- Desktop.setAboutHandler(java.awt.desktop.AboutHandler)
 
- 
APP_PREFERENCESRepresents a PreferencesHandler- Since:
- 9
- See Also:
- Desktop.setPreferencesHandler(java.awt.desktop.PreferencesHandler)
 
- 
APP_OPEN_FILERepresents an OpenFilesHandler- Since:
- 9
- See Also:
- Desktop.setOpenFileHandler(java.awt.desktop.OpenFilesHandler)
 
- 
APP_PRINT_FILERepresents a PrintFilesHandler- Since:
- 9
- See Also:
- Desktop.setPrintFileHandler(java.awt.desktop.PrintFilesHandler)
 
- 
APP_OPEN_URIRepresents an OpenURIHandler- Since:
- 9
- See Also:
- Desktop.setOpenURIHandler(java.awt.desktop.OpenURIHandler)
 
- 
APP_QUIT_HANDLERRepresents a QuitHandler- Since:
- 9
- See Also:
- Desktop.setQuitHandler(java.awt.desktop.QuitHandler)
 
- 
APP_QUIT_STRATEGYRepresents a QuitStrategy- Since:
- 9
- See Also:
- Desktop.setQuitStrategy(java.awt.desktop.QuitStrategy)
 
- 
APP_SUDDEN_TERMINATIONRepresents a SuddenTermination- Since:
- 9
- See Also:
- Desktop.enableSuddenTermination()
 
- 
APP_REQUEST_FOREGROUNDRepresents a requestForeground- Since:
- 9
- See Also:
- Desktop.requestForeground(boolean)
 
- 
APP_HELP_VIEWERRepresents a HelpViewer- Since:
- 9
- See Also:
- Desktop.openHelpViewer()
 
- 
APP_MENU_BARRepresents a menu bar- Since:
- 9
- See Also:
- Desktop.setDefaultMenuBar(javax.swing.JMenuBar)
 
- 
BROWSE_FILE_DIRRepresents a browse file directory- Since:
- 9
- See Also:
- Desktop.browseFileDirectory(java.io.File)
 
- 
MOVE_TO_TRASHRepresents a move to trash- Since:
- 9
- See Also:
- Desktop.moveToTrash(java.io.File)
 
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-