JavaTM 2 Platform
Standard Ed. 6

java.awt
列舉 TrayIcon.MessageType

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

public static enum TrayIcon.MessageType
extends Enum<TrayIcon.MessageType>

MessageType 確定哪個圖標將顯示在訊息標題中,以及訊息根據顯示產生的可能的系統聲音。

從以下版本開始:
1.6
另請參見:
TrayIcon, TrayIcon.displayMessage(String, String, MessageType)

列舉常數摘要
ERROR
          錯誤訊息
INFO
          資訊訊息
NONE
          簡單訊息
WARNING
          警告訊息
 
方法摘要
static TrayIcon.MessageType valueOf(String name)
          返回帶有指定名稱的該型別的列舉常數。
static TrayIcon.MessageType[] 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
 

列舉常數詳細資訊

ERROR

public static final TrayIcon.MessageType ERROR
錯誤訊息


WARNING

public static final TrayIcon.MessageType WARNING
警告訊息


INFO

public static final TrayIcon.MessageType INFO
資訊訊息


NONE

public static final TrayIcon.MessageType NONE
簡單訊息

方法詳細資訊

values

public static final TrayIcon.MessageType[] 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(TrayIcon.MessageType c : TrayIcon.MessageType.values())
        System.out.println(c);

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

valueOf

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

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

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

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