⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xmlnsform.java

📁 Mobile 应用程序使用 Java Micro Edition (Java ME) 平台
💻 JAVA
字号:
/* * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package javax.xml.bind.annotation;/** * Enumeration of XML Schema namespace qualifications.  * * <p>See "Package Specification" in javax.xml.bind.package javadoc for * additional common information.</p> * * <p><b>Usage</b>   * <p> * The namespace qualification values are used in the annotations * defined in this packge. The enumeration values are mapped as follows: * * <p> * <table border="1" cellpadding="4" cellspacing="3"> *   <tbody> *     <tr> *       <td><b>Enum Value<b></td> *       <td><b>XML Schema Value<b></td> *     </tr> *  *     <tr valign="top"> *       <td>UNQUALIFIED</td> *       <td>unqualified</td> *     </tr> *     <tr valign="top"> *       <td>QUALIFIED</td> *       <td>qualified</td> *     </tr> *     <tr valign="top"> *       <td>UNSET</td> *       <td>namespace qualification attribute is absent from the *           XML Schema fragment</td> *     </tr> *   </tbody> * </table> *  * @author Sekhar Vajjhala, Sun Microsystems, Inc. * @since JAXB2.0 * @version $Revision: 1.1 $ */public enum XmlNsForm {UNQUALIFIED, QUALIFIED, UNSET}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -