JavaTM 2 Platform
Standard Ed. 6

java.awt
列舉 Desktop.Action

java.lang.Object
  繼承者 java.lang.Enum<Desktop.Action>
      繼承者 java.awt.Desktop.Action
所有已實作的介面:
Serializable, Comparable<Desktop.Action>
正在封閉類別:
Desktop

public static enum Desktop.Action
extends Enum<Desktop.Action>

表示動作型別。每個平臺都支持不同的動作集。可以使用 Desktop.isSupported(java.awt.Desktop.Action) 方法確定當前平臺是否支持給定動作。

從以下版本開始:
1.6
另請參見:
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
 

列舉常數詳細資訊

OPEN

public static final Desktop.Action OPEN
表示“打開”動作。

另請參見:
Desktop.open(java.io.File)

EDIT

public static final Desktop.Action EDIT
表示“編輯”動作。

另請參見:
Desktop.edit(java.io.File)

PRINT

public static final Desktop.Action PRINT
表示“列印”動作。

另請參見:
Desktop.print(java.io.File)

MAIL

public static final Desktop.Action MAIL
表示“郵寄”動作。

另請參見:
Desktop.mail(), Desktop.mail(java.net.URI)

BROWSE

public static final Desktop.Action BROWSE
表示“瀏覽”動作。

另請參見:
Desktop.browse(java.net.URI)
方法詳細資訊

values

public static final Desktop.Action[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for(Desktop.Action c : Desktop.Action.values())
        System.out.println(c);

返回:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Desktop.Action valueOf(String name)
返回帶有指定名稱的該型別的列舉常數。 字元串必須與用於宣告該型別的列舉常數的 標識符完全比對。(不允許有多餘 的空格。)

參數:
指定要返回的列舉常數的名稱。 -
返回:
返回帶有指定名稱的列舉常數
拋出:
如果該列舉型別沒有帶有指定名稱的常數, - 則拋出 IllegalArgumentException

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only