java.lang.Object java.lang.Enum<Desktop.Action> java.awt.Desktop.Action
public static enum Desktop.Action
表示动作类型。每个平台都支持不同的动作集。可以使用 Desktop.isSupported(java.awt.Desktop.Action)
方法确定当前平台是否支持给定动作。
Desktop.isSupported(java.awt.Desktop.Action)
枚举常量摘要 | |
---|---|
BROWSE 表示“浏览”动作。 |
|
EDIT 表示“编辑”动作。 |
|
MAIL 表示“邮寄”动作。 |
|
OPEN 表示“打开”动作。 |
|
PRINT 表示“打印”动作。 |
方法摘要 | |
---|---|
static Desktop.Action |
valueOf(String name) 返回带有指定名称的该类型的枚举常量。 |
static Desktop.Action[] |
values() Returns an array containing the constants of this enum type, in the order they are declared. |
从类 java.lang.Enum 继承的方法 |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
从类 java.lang.Object 继承的方法 |
---|
getClass, notify, notifyAll, wait, wait, wait |
枚举常量详细信息 |
---|
public static final Desktop.Action OPEN
public static final Desktop.Action EDIT
public static final Desktop.Action PRINT
public static final Desktop.Action MAIL
public static final Desktop.Action BROWSE
方法详细信息 |
---|
public static final Desktop.Action[] values()
for(Desktop.Action c : Desktop.Action.values()) System.out.println(c);
public static Desktop.Action valueOf(String name)
指定要返回的枚举常量的名称。
-
如果该枚举类型没有带有指定名称的常量,
- 则抛出 IllegalArgumentException