src.javax.xml.bind.annotation.XmlAccessOrder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache Show documentation
Show all versions of ehcache Show documentation
Ehcache is an open source, standards-based cache used to boost performance,
offload the database and simplify scalability. Ehcache is robust, proven and full-featured and
this has made it the most widely-used Java-based cache.
/*
* 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
* @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
}