Package org.apache.xmlbeans
Interface UserType
- All Known Implementing Classes:
- UserTypeImpl
public interface UserType
The UserType class represents a mapping between an XML Schema QName and
 a custom Java class type. It is used during code generation to determine
 how to convert user-defined simple types to user defined Java classes.
- 
Method SummaryModifier and Type Method Description StringgetJavaName()The class name the simple value will be converted to.QNamegetName()The QName of the simple value that will be converted to a Java class.StringgetStaticHandler()A class which provides public static methods to convertSimpleValueobjects to and from the Java type specified bygetJavaName().
- 
Method Details- 
getNameQName getName()The QName of the simple value that will be converted to a Java class.
- 
getJavaNameString getJavaName()The class name the simple value will be converted to.
- 
getStaticHandlerString getStaticHandler()A class which provides public static methods to convertSimpleValueobjects to and from the Java type specified bygetJavaName().
 
-