Enum Class Desktop.Action
- 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 SummaryNested classes/interfaces declared in class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum 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 SummaryModifier and TypeMethodDescriptionstatic Desktop.ActionReturns 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
- 
EDIT
- 
PRINT
- 
MAIL
- 
BROWSE
- 
APP_EVENT_FOREGROUNDRepresents an AppForegroundListener- Since:
- 9
- See Also:
 
- 
APP_EVENT_HIDDENRepresents an AppHiddenListener- Since:
- 9
- See Also:
 
- 
APP_EVENT_REOPENEDRepresents an AppReopenedListener- Since:
- 9
- See Also:
 
- 
APP_EVENT_SCREEN_SLEEPRepresents a ScreenSleepListener- Since:
- 9
- See Also:
 
- 
APP_EVENT_SYSTEM_SLEEPRepresents a SystemSleepListener- Since:
- 9
- See Also:
 
- 
APP_EVENT_USER_SESSIONRepresents a UserSessionListener- Since:
- 9
- See Also:
 
- 
APP_ABOUT
- 
APP_PREFERENCESRepresents a PreferencesHandler- Since:
- 9
- See Also:
 
- 
APP_OPEN_FILE
- 
APP_PRINT_FILE
- 
APP_OPEN_URI
- 
APP_QUIT_HANDLER
- 
APP_QUIT_STRATEGY
- 
APP_SUDDEN_TERMINATIONRepresents a SuddenTermination- Since:
- 9
- See Also:
 
- 
APP_REQUEST_FOREGROUNDRepresents a requestForeground- Since:
- 9
- See Also:
 
- 
APP_HELP_VIEWER
- 
APP_MENU_BAR
- 
BROWSE_FILE_DIRRepresents a browse file directory- Since:
- 9
- See Also:
 
- 
MOVE_TO_TRASH
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-