@Retention(value=RUNTIME) @Target(value=TYPE) @Deprecated public @interface XmlType
public abstract String name
public abstract String[] propOrder
Refer to the table for how the propOrder affects the mapping of class
The propOrder is a list of names of JavaBean properties in the class. Each name in the list is the name of a Java identifier of the JavaBean property. The order in which JavaBean properties are listed is the order of XML Schema elements to which the JavaBean properties are mapped.
All of the JavaBean properties being mapped to XML Schema elements must be listed.
A JavaBean property or field listed in propOrder must not be transient or annotated with @XmlTransient.
The default ordering of JavaBean properties is determined
by @XmlAccessorOrder
.
Copyright © 2000–2022 EPAM Systems. All rights reserved.