XMLObjectType - the XMLObject type that this builder producespublic abstract class AbstractXMLObjectBuilder<XMLObjectType extends XMLObject> extends java.lang.Object implements XMLObjectBuilder<XMLObjectType>
AbstractXMLObjects| Constructor and Description |
|---|
AbstractXMLObjectBuilder() |
| Modifier and Type | Method and Description |
|---|---|
XMLObjectType |
buildObject(org.w3c.dom.Element element)
Creates an XMLObject using information from the given DOM element.
|
XMLObjectType |
buildObject(javax.xml.namespace.QName objectName)
Creates an XMLObject with a given fully qualified name.
|
XMLObjectType |
buildObject(javax.xml.namespace.QName objectName,
javax.xml.namespace.QName schemaType)
Creates an XMLObject with a given fully qualified name and schema type.
|
abstract XMLObjectType |
buildObject(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String namespacePrefix)
Creates an XMLObject with a given fully qualified name.
|
XMLObjectType |
buildObject(java.lang.String namespaceURI,
java.lang.String localName,
java.lang.String namespacePrefix,
javax.xml.namespace.QName schemaType)
Creates an XMLObject with a given fully qualified name.
|
@Nonnull public XMLObjectType buildObject(@Nonnull javax.xml.namespace.QName objectName)
buildObject in interface XMLObjectBuilder<XMLObjectType extends XMLObject>objectName - fully qualified name of the object@Nonnull public XMLObjectType buildObject(@Nonnull javax.xml.namespace.QName objectName, @Nullable javax.xml.namespace.QName schemaType)
buildObject in interface XMLObjectBuilder<XMLObjectType extends XMLObject>objectName - fully qualified name of the objectschemaType - the schema type of the Element represented by this XMLObject@Nonnull public abstract XMLObjectType buildObject(@Nullable java.lang.String namespaceURI, @Nonnull @NotEmpty java.lang.String localName, @Nullable java.lang.String namespacePrefix)
buildObject in interface XMLObjectBuilder<XMLObjectType extends XMLObject>namespaceURI - the URI of the namespace the Element represented by this XMLObject will be inlocalName - the local name of the Element represented by this XMLObjectnamespacePrefix - the namespace prefix of the Element represented by this XMLObject@Nonnull public XMLObjectType buildObject(@Nullable java.lang.String namespaceURI, @Nonnull java.lang.String localName, @Nullable java.lang.String namespacePrefix, @Nullable javax.xml.namespace.QName schemaType)
buildObject in interface XMLObjectBuilder<XMLObjectType extends XMLObject>namespaceURI - the URI of the namespace the Element represented by this XMLObject will be inlocalName - the local name of the Element represented by this XMLObjectnamespacePrefix - the namespace prefix of the Element represented by this XMLObjectschemaType - the schema type of the Element represented by this XMLObject@Nonnull public XMLObjectType buildObject(@Nonnull org.w3c.dom.Element element)
AbstractXMLObjectUnmarshaller.buildObject in interface XMLObjectBuilder<XMLObjectType extends XMLObject>element - the DOM Element containing information about the object to be built.