public static enum Desktop.Action extends Enum<Desktop.Action>
Desktop.isSupported(java.awt.Desktop.Action)
method.Modifier and Type | Method and 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.
|
public static final Desktop.Action BROWSE
public static final Desktop.Action EDIT
public static final Desktop.Action MAIL
public static final Desktop.Action OPEN
public static final Desktop.Action PRINT
public static Desktop.Action[] values()
for (Desktop.Action c : Desktop.Action.values()) System.out.println(c);
public static Desktop.Action valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is null