JavaTM 2 Platform
Standard Ed. 6

javax.xml.bind.annotation
列舉 XmlNsForm

java.lang.Object
  繼承者 java.lang.Enum<XmlNsForm>
      繼承者 javax.xml.bind.annotation.XmlNsForm
所有已實作的介面:
Serializable, Comparable<XmlNsForm>

public enum XmlNsForm
extends Enum<XmlNsForm>

XML 網要名稱空間限定的列舉。

有關其他公共資訊,請參閱 javax.xml.bind.package javadoc 中的“套件規範”。

用法

名稱空間限定值用於此套件中定義的註釋。列舉值的映射如下所示:

列舉值 XML 網要值
UNQUALIFIED 非限定的
QUALIFIED 限定的
UNSET 名稱空間限定屬性並不存在於 XML 網要片段中。

從以下版本開始:
JAXB2.0

列舉常數摘要
QUALIFIED
           
UNQUALIFIED
           
UNSET
           
 
方法摘要
static XmlNsForm valueOf(String name)
          返回帶有指定名稱的該型別的列舉常數。
static XmlNsForm[] 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
 

列舉常數詳細資訊

UNQUALIFIED

public static final XmlNsForm UNQUALIFIED

QUALIFIED

public static final XmlNsForm QUALIFIED

UNSET

public static final XmlNsForm UNSET
方法詳細資訊

values

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

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

valueOf

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

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

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

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