JavaTM 2 Platform
Standard Ed. 6

java.sql
列舉 ClientInfoStatus

java.lang.Object
  繼承者 java.lang.Enum<ClientInfoStatus>
      繼承者 java.sql.ClientInfoStatus
所有已實作的介面:
Serializable, Comparable<ClientInfoStatus>

public enum ClientInfoStatus
extends Enum<ClientInfoStatus>

無法通過調用 Connection.setClientInfo 設置屬性的原因狀態的列舉。

從以下版本開始:
1.6

列舉常數摘要
REASON_UNKNOWN
          由於某種未知原因而無法設置客戶端資訊屬性
REASON_UNKNOWN_PROPERTY
          指定的客戶端資訊屬性不是一個可識別的屬性名稱。
REASON_VALUE_INVALID
          為客戶端資訊屬性指定的值無效。
REASON_VALUE_TRUNCATED
          為客戶端資訊屬性指定的值太大。
 
方法摘要
static ClientInfoStatus valueOf(String name)
          返回帶有指定名稱的該型別的列舉常數。
static ClientInfoStatus[] 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
 

列舉常數詳細資訊

REASON_UNKNOWN

public static final ClientInfoStatus REASON_UNKNOWN
由於某種未知原因而無法設置客戶端資訊屬性

從以下版本開始:
1.6

REASON_UNKNOWN_PROPERTY

public static final ClientInfoStatus REASON_UNKNOWN_PROPERTY
指定的客戶端資訊屬性不是一個可識別的屬性名稱。

從以下版本開始:
1.6

REASON_VALUE_INVALID

public static final ClientInfoStatus REASON_VALUE_INVALID
為客戶端資訊屬性指定的值無效。

從以下版本開始:
1.6

REASON_VALUE_TRUNCATED

public static final ClientInfoStatus REASON_VALUE_TRUNCATED
為客戶端資訊屬性指定的值太大。

從以下版本開始:
1.6
方法詳細資訊

values

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

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

valueOf

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

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

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

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