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

📄 xmlaccessorder.java

📁 java1.6众多例子参考
💻 JAVA
字号:
/* * Copyright 2005 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package javax.xml.bind.annotation;/** * Used by XmlAccessorOrder to control the ordering of properties and * fields in a JAXB bound class. * * @author Sekhar Vajjhala, Sun Microsystems, Inc. * @since JAXB2.0 * @version $Revision: 1.3 $ * @see XmlAccessorOrder */public enum XmlAccessOrder {     /**     * The ordering of fields and properties in a class is undefined.      */    UNDEFINED,    /**     * The ordering of fields and properties in a class is in     * alphabetical order as determined by the     * method java.lang.String.compareTo(String anotherString).     */    ALPHABETICAL}

⌨️ 快捷键说明

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