Enum Class Desktop.Action
- 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:
Nested Class Summary
Nested classes/interfaces declared in class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Enum Constant Summary
Enum Constant | Description |
---|---|
APP_ABOUT |
Represents an AboutHandler |
APP_EVENT_FOREGROUND |
Represents an AppForegroundListener |
APP_EVENT_HIDDEN |
Represents an AppHiddenListener |
APP_EVENT_REOPENED |
Represents an AppReopenedListener |
APP_EVENT_SCREEN_SLEEP |
Represents a ScreenSleepListener |
APP_EVENT_SYSTEM_SLEEP |
Represents a SystemSleepListener |
APP_EVENT_USER_SESSION |
Represents a UserSessionListener |
APP_HELP_VIEWER |
Represents a HelpViewer |
APP_MENU_BAR |
Represents a menu bar |
APP_OPEN_FILE |
Represents an OpenFilesHandler |
APP_OPEN_URI |
Represents an OpenURIHandler |
APP_PREFERENCES |
Represents a PreferencesHandler |
APP_PRINT_FILE |
Represents a PrintFilesHandler |
APP_QUIT_HANDLER |
Represents a QuitHandler |
APP_QUIT_STRATEGY |
Represents a QuitStrategy |
APP_REQUEST_FOREGROUND |
Represents a requestForeground |
APP_SUDDEN_TERMINATION |
Represents a SuddenTermination |
BROWSE |
Represents a "browse" action. |
BROWSE_FILE_DIR |
Represents a browse file directory |
EDIT |
Represents an "edit" action. |
MAIL |
Represents a "mail" action. |
MOVE_TO_TRASH |
Represents a move to trash |
OPEN |
Represents an "open" action. |
PRINT |
Represents a "print" action. |
Method Summary
Modifier and Type | Method | Description |
---|---|---|
static Desktop.Action |
valueOf |
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
public static final Desktop.Action OPEN
Represents an "open" action.
- See Also:
EDIT
public static final Desktop.Action EDIT
Represents an "edit" action.
- See Also:
public static final Desktop.Action PRINT
Represents a "print" action.
- See Also:
public static final Desktop.Action MAIL
Represents a "mail" action.
- See Also:
BROWSE
public static final Desktop.Action BROWSE
Represents a "browse" action.
- See Also:
APP_EVENT_FOREGROUND
public static final Desktop.Action APP_EVENT_FOREGROUND
Represents an AppForegroundListener
- Since:
- 9
- See Also:
APP_EVENT_HIDDEN
public static final Desktop.Action APP_EVENT_HIDDEN
Represents an AppHiddenListener
- Since:
- 9
- See Also:
APP_EVENT_REOPENED
public static final Desktop.Action APP_EVENT_REOPENED
Represents an AppReopenedListener
- Since:
- 9
- See Also:
APP_EVENT_SCREEN_SLEEP
public static final Desktop.Action APP_EVENT_SCREEN_SLEEP
Represents a ScreenSleepListener
- Since:
- 9
- See Also:
APP_EVENT_SYSTEM_SLEEP
public static final Desktop.Action APP_EVENT_SYSTEM_SLEEP
Represents a SystemSleepListener
- Since:
- 9
- See Also:
APP_EVENT_USER_SESSION
public static final Desktop.Action APP_EVENT_USER_SESSION
Represents a UserSessionListener
- Since:
- 9
- See Also:
APP_ABOUT
public static final Desktop.Action APP_ABOUT
Represents an AboutHandler
- Since:
- 9
- See Also:
APP_PREFERENCES
public static final Desktop.Action APP_PREFERENCES
Represents a PreferencesHandler
- Since:
- 9
- See Also:
APP_OPEN_FILE
public static final Desktop.Action APP_OPEN_FILE
Represents an OpenFilesHandler
- Since:
- 9
- See Also:
APP_PRINT_FILE
public static final Desktop.Action APP_PRINT_FILE
Represents a PrintFilesHandler
- Since:
- 9
- See Also:
APP_OPEN_URI
public static final Desktop.Action APP_OPEN_URI
Represents an OpenURIHandler
- Since:
- 9
- See Also:
APP_QUIT_HANDLER
public static final Desktop.Action APP_QUIT_HANDLER
Represents a QuitHandler
- Since:
- 9
- See Also:
APP_QUIT_STRATEGY
public static final Desktop.Action APP_QUIT_STRATEGY
Represents a QuitStrategy
- Since:
- 9
- See Also:
APP_SUDDEN_TERMINATION
public static final Desktop.Action APP_SUDDEN_TERMINATION
Represents a SuddenTermination
- Since:
- 9
- See Also:
APP_REQUEST_FOREGROUND
public static final Desktop.Action APP_REQUEST_FOREGROUND
Represents a requestForeground
- Since:
- 9
- See Also:
APP_HELP_VIEWER
public static final Desktop.Action APP_HELP_VIEWER
Represents a HelpViewer
- Since:
- 9
- See Also:
APP_MENU_BAR
public static final Desktop.Action APP_MENU_BAR
Represents a menu bar
- Since:
- 9
- See Also:
BROWSE_FILE_DIR
public static final Desktop.Action BROWSE_FILE_DIR
Represents a browse file directory
- Since:
- 9
- See Also:
MOVE_TO_TRASH
public static final Desktop.Action MOVE_TO_TRASH
Represents a move to trash
- Since:
- 9
- See Also:
Method Details
values
public static Desktop.Action[] 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
public static Desktop.Action valueOf(String name)
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 name -
NullPointerException
- if the argument is null
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.desktop/java/awt/Desktop.Action.html