1 /*2 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.3 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.4 */5 6 package javax.xml.bind.annotation;7 8 /**9 * Enumeration of XML Schema namespace qualifications. 10 *11 * <p>See "Package Specification" in javax.xml.bind.package javadoc for12 * additional common information.</p>13 *14 * <p><b>Usage</b> 15 * <p>16 * The namespace qualification values are used in the annotations17 * defined in this packge. The enumeration values are mapped as follows:18 *19 * <p>20 * <table border="1" cellpadding="4" cellspacing="3">21 * <tbody>22 * <tr>23 * <td><b>Enum Value<b></td>24 * <td><b>XML Schema Value<b></td>25 * </tr>26 * 27 * <tr valign="top">28 * <td>UNQUALIFIED</td>29 * <td>unqualified</td>30 * </tr>31 * <tr valign="top">32 * <td>QUALIFIED</td>33 * <td>qualified</td>34 * </tr>35 * <tr valign="top">36 * <td>UNSET</td>37 * <td>namespace qualification attribute is absent from the38 * XML Schema fragment</td>39 * </tr>40 * </tbody>41 * </table>42 * 43 * @author Sekhar Vajjhala, Sun Microsystems, Inc.44 * @since JAXB2.045 * @version $Revision: 1.1 $46 */47 public enum XmlNsForm {UNQUALIFIED, QUALIFIED, UNSET}48 49 50 51