- CastorMappingException - Exception in org.springframework.oxm.castor
-
- CastorMappingException(String, Throwable) - Constructor for exception org.springframework.oxm.castor.CastorMappingException
-
Construct a CastorMappingException
with the specified detail message
and nested exception.
- CastorMarshaller - Class in org.springframework.oxm.castor
-
Implementation of the Marshaller
interface for Castor.
- CastorMarshaller() - Constructor for class org.springframework.oxm.castor.CastorMarshaller
-
- CastorMarshallerBeanDefinitionParser - Class in org.springframework.oxm.config
-
Parser for the <oxm:castor-marshaller/>
element.
- CastorMarshallerBeanDefinitionParser() - Constructor for class org.springframework.oxm.config.CastorMarshallerBeanDefinitionParser
-
- convertCastorException(XMLException, boolean) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Convert the given XMLException
to an appropriate exception from the
org.springframework.oxm
hierarchy.
- convertJaxbException(JAXBException) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Convert the given JAXBException
to an appropriate exception from the
org.springframework.oxm
hierarchy.
- convertJibxException(JiBXException, boolean) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
Convert the given JiBXException
to an appropriate exception from the
org.springframework.oxm
hierarchy.
- convertToXopPackage() - Method in interface org.springframework.oxm.mime.MimeContainer
-
Turn this message into a XOP package.
- convertXmlBeansException(Exception, boolean) - Method in class org.springframework.oxm.xmlbeans.XmlBeansMarshaller
-
Convert the given XMLBeans exception to an appropriate exception from the
org.springframework.oxm
hierarchy.
- convertXStreamException(Exception, boolean) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
Convert the given XStream exception to an appropriate exception from the
org.springframework.oxm
hierarchy.
- createDocumentBuilder(DocumentBuilderFactory) - Method in class org.springframework.oxm.support.AbstractMarshaller
-
Create a DocumentBuilder
that this marshaller will use for creating
DOM documents when passed an empty DOMSource
.
- createDocumentBuilderFactory() - Method in class org.springframework.oxm.support.AbstractMarshaller
-
Create a DocumentBuilder
that this marshaller will use for creating
DOM documents when passed an empty DOMSource
.
- createInputSource(Resource) - Static method in class org.springframework.oxm.support.SaxResourceUtils
-
Create a SAX InputSource
from the given resource.
- createMarshaller() - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Return a newly created JAXB marshaller.
- createMarshallingContext() - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
Create a new IMarshallingContext
, configured with the correct indentation.
- createUnmarshaller() - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Return a newly created JAXB unmarshaller.
- createUnmarshallingContext() - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
Create a new IUnmarshallingContext
.
- createXMLContext(Resource[], Class[], String[]) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Create the Castor XMLContext
.
- createXmlReader() - Method in class org.springframework.oxm.support.AbstractMarshaller
-
Create a XMLReader
that this marshaller will when passed an empty SAXSource
.
- customizeMarshaller(Marshaller) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Template method that allows for customizing of the given Castor Marshaller
.
- customizeUnmarshaller(Unmarshaller) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Template method that allows for customizing of the given Castor Unmarshaller
.
- customizeXStream(XStream) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
Template to allow for customizing of the given XStream
.
- marshal(Object, Result) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
- marshal(Object, Result, MimeContainer) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
- marshal(Object, Result) - Method in interface org.springframework.oxm.Marshaller
-
Marshals the object graph with the given root into the provided
Result
.
- marshal(Object, Result, MimeContainer) - Method in interface org.springframework.oxm.mime.MimeMarshaller
-
Marshals the object graph with the given root into the provided
Result
,
writing binary data to a
MimeContainer
.
- marshal(Object, Result) - Method in class org.springframework.oxm.support.AbstractMarshaller
-
Marshals the object graph with the given root into the provided javax.xml.transform.Result
.
- marshalDomNode(Object, Node) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
- marshalDomNode(Object, Node) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
- marshalDomNode(Object, Node) - Method in class org.springframework.oxm.support.AbstractMarshaller
-
Abstract template method for marshalling the given object graph to a DOM Node
.
- marshalDomNode(Object, Node) - Method in class org.springframework.oxm.xmlbeans.XmlBeansMarshaller
-
- marshalDomNode(Object, Node) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
- marshalDomResult(Object, DOMResult) - Method in class org.springframework.oxm.support.AbstractMarshaller
-
Template method for handling DOMResult
s.
- Marshaller - Interface in org.springframework.oxm
-
Defines the contract for Object XML Mapping Marshallers.
- MarshallingException - Exception in org.springframework.oxm
-
Base class for exception thrown when a marshalling or unmarshalling error occurs.
- MarshallingException(String) - Constructor for exception org.springframework.oxm.MarshallingException
-
Construct a MarshallingException
with the specified detail message.
- MarshallingException(String, Throwable) - Constructor for exception org.springframework.oxm.MarshallingException
-
Construct a MarshallingException
with the specified detail message
and nested exception.
- MarshallingFailureException - Exception in org.springframework.oxm
-
Exception thrown on marshalling failure.
- MarshallingFailureException(String) - Constructor for exception org.springframework.oxm.MarshallingFailureException
-
Construct a MarshallingFailureException
with the specified detail message.
- MarshallingFailureException(String, Throwable) - Constructor for exception org.springframework.oxm.MarshallingFailureException
-
Construct a MarshallingFailureException
with the specified detail message
and nested exception.
- MarshallingSource - Class in org.springframework.oxm.support
-
Source
implementation that uses a
Marshaller
.Can be constructed with a
Marshaller
and an object to be marshalled.
- MarshallingSource(Marshaller, Object) - Constructor for class org.springframework.oxm.support.MarshallingSource
-
Create a new MarshallingSource
with the given marshaller and content.
- marshalOutputStream(Object, OutputStream) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
- marshalOutputStream(Object, OutputStream) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
- marshalOutputStream(Object, OutputStream) - Method in class org.springframework.oxm.support.AbstractMarshaller
-
Abstract template method for marshalling the given object graph to a OutputStream
.
- marshalOutputStream(Object, OutputStream) - Method in class org.springframework.oxm.xmlbeans.XmlBeansMarshaller
-
- marshalOutputStream(Object, OutputStream) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
- marshalSaxHandlers(Object, ContentHandler, LexicalHandler) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
- marshalSaxHandlers(Object, ContentHandler, LexicalHandler) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
- marshalSaxHandlers(Object, ContentHandler, LexicalHandler) - Method in class org.springframework.oxm.support.AbstractMarshaller
-
Abstract template method for marshalling the given object graph to a SAX ContentHandler
.
- marshalSaxHandlers(Object, ContentHandler, LexicalHandler) - Method in class org.springframework.oxm.xmlbeans.XmlBeansMarshaller
-
- marshalSaxHandlers(Object, ContentHandler, LexicalHandler) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
- marshalSaxResult(Object, SAXResult) - Method in class org.springframework.oxm.support.AbstractMarshaller
-
Template method for handling SAXResult
s.
- marshalStaxResult(Object, Result) - Method in class org.springframework.oxm.support.AbstractMarshaller
-
Template method for handling StaxResult
s.
- marshalStreamResult(Object, StreamResult) - Method in class org.springframework.oxm.support.AbstractMarshaller
-
Template method for handling StreamResult
s.
- marshalWriter(Object, Writer) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
- marshalWriter(Object, Writer) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
- marshalWriter(Object, Writer) - Method in class org.springframework.oxm.support.AbstractMarshaller
-
Abstract template method for marshalling the given object graph to a Writer
.
- marshalWriter(Object, Writer) - Method in class org.springframework.oxm.xmlbeans.XmlBeansMarshaller
-
- marshalWriter(Object, Writer) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
- marshalXmlEventWriter(Object, XMLEventWriter) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
- marshalXmlEventWriter(Object, XMLEventWriter) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
- marshalXmlEventWriter(Object, XMLEventWriter) - Method in class org.springframework.oxm.support.AbstractMarshaller
-
Abstract template method for marshalling the given object to a StAX XMLEventWriter
.
- marshalXmlEventWriter(Object, XMLEventWriter) - Method in class org.springframework.oxm.xmlbeans.XmlBeansMarshaller
-
- marshalXmlEventWriter(Object, XMLEventWriter) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
- marshalXmlStreamWriter(Object, XMLStreamWriter) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
- marshalXmlStreamWriter(Object, XMLStreamWriter) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
- marshalXmlStreamWriter(Object, XMLStreamWriter) - Method in class org.springframework.oxm.support.AbstractMarshaller
-
Abstract template method for marshalling the given object to a StAX XMLStreamWriter
.
- marshalXmlStreamWriter(Object, XMLStreamWriter) - Method in class org.springframework.oxm.xmlbeans.XmlBeansMarshaller
-
- marshalXmlStreamWriter(Object, XMLStreamWriter) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
- MimeContainer - Interface in org.springframework.oxm.mime
-
Represents a container for MIME attachments
Concrete implementations might adapt a SOAPMessage or an email message.
- MimeMarshaller - Interface in org.springframework.oxm.mime
-
Subinterface of
Marshaller
that can use MIME attachments to optimize
storage of binary data.
- MimeUnmarshaller - Interface in org.springframework.oxm.mime
-
Subinterface of
Unmarshaller
that can use MIME attachments
to optimize storage of binary data.
- SaxResourceUtils - Class in org.springframework.oxm.support
-
Convenient utility methods for dealing with SAX.
- SaxResourceUtils() - Constructor for class org.springframework.oxm.support.SaxResourceUtils
-
- setAdapters(XmlAdapter<?, ?>[]) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Specify the XmlAdapter
s to be registered with the JAXB Marshaller
and Unmarshaller
- setAliases(Map<String, ?>) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
Sets an alias/type map, consisting of string aliases mapped to classes.
- setAliasesByType(Map<String, ?>) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
Sets the aliases by type map, consisting of string aliases mapped to classes.
- setAnnotatedClass(Class<?>) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
Set the classes for which mappings will be read from class-level JDK 1.5+ annotation metadata.
- setAnnotatedClasses(Class<?>[]) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
Set annotated classes for which aliases will be read from class-level JDK 1.5+ annotation metadata.
- setAutodetectAnnotations(boolean) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
Set the autodetection mode of XStream.
- setBeanClassLoader(ClassLoader) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
- setBeanClassLoader(ClassLoader) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
- setBeanClassLoader(ClassLoader) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
- setBindingName(String) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
Set the optional binding name for this instance.
- setCheckForXmlRootElement(boolean) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
- setClassesToBeBound(Class<?>...) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Set the list of Java classes to be recognized by a newly created JAXBContext.
- setClearCollections(boolean) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Sets whether this unmarshaller should clear collections upon the first use.
- setContextPath(String) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Set a JAXB context path.
- setContextPaths(String...) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Set multiple JAXB context paths.
- setConverters(ConverterMatcher[]) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
Set the Converters
or SingleValueConverters
to be registered
with the XStream
instance.
- setDocTypeInternalSubset(String) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
Sets the internal subset Id for the DTD declaration written when marshalling.
- setDocTypePublicId(String) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
Sets the public Id for the DTD declaration written when marshalling.
- setDocTypeRootElementName(String) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
Sets the root element name for the DTD declaration written when marshalling.
- setDocTypeSystemId(String) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
Sets the system Id for the DTD declaration written when marshalling.
- setEncoding(String) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Set the encoding to be used for stream access.
- setEncoding(String) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
Set the document encoding using for marshalling.
- setEncoding(String) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
Set the encoding to be used for stream access.
- setFieldAliases(Map<String, String>) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
Sets a field alias/type map, consiting of field names
- setIgnoreExtraAttributes(boolean) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Set whether the Castor Unmarshaller
should ignore attributes that do not match a specific field.
- setIgnoreExtraElements(boolean) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Set whether the Castor Unmarshaller
should ignore elements that do not match a specific field.
- setImplicitCollections(Map<Class<?>, String>) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
Specify implicit collection fields, as a Map consisting of Class
instances
mapped to comma separated collection field names.
- setIndent(int) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
Set the number of nesting indent spaces.
- setInputSource(InputSource) - Method in class org.springframework.oxm.support.MarshallingSource
-
Throws a UnsupportedOperationException
.
- setJaxbContextProperties(Map<String, ?>) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Set the JAXBContext
properties.
- setLazyInit(boolean) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Set whether to lazily initialize the
JAXBContext
for this marshaller.
- setMappingLocation(Resource) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Set the locations of the Castor XML Mapping files.
- setMappingLocations(Resource[]) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Set the locations of the Castor XML Mapping files.
- setMarshalAsDocument(boolean) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Sets whether this marshaller should output the xml declaration.
- setMarshalExtendedType(boolean) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Sets whether this marshaller should output for given type the xsi:type
attribute.
- setMarshallerListener(Marshaller.Listener) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Specify the Marshaller.Listener
to be registered with the JAXB Marshaller
.
- setMarshallerProperties(Map<String, ?>) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Set the JAXB Marshaller
properties.
- setMode(int) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
Set the XStream mode.
- setMtomEnabled(boolean) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Specify whether MTOM support should be enabled or not.
- setNamespaceMappings(Map<String, String>) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Set the namespace mappings.
- setNamespaceToPackageMapping(Map<String, String>) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Set the namespace to package mappings.
- setNoNamespaceSchemaLocation(String) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Sets the value of xsi:noNamespaceSchemaLocation
attribute.
- setObject(Object) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Sets the expected object for the unmarshaller, into which the source will be unmarshalled.
- setOmittedFields(Map<Class<?>, String>) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
Specify omitted fields, as a Map consisting of Class
instances
mapped to comma separated field names.
- setOptions(Map<String, ?>) - Method in class org.springframework.oxm.xmlbeans.XmlOptionsFactoryBean
-
Set options on the underlying XmlOptions
object.
- setPackagesToScan(String[]) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Set the packages to search using Spring-based scanning for classes with JAXB2 annotations in the classpath.
- setProcessingInstructions(Map<String, String>) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Sets the processing instructions that will be used by during marshalling.
- setResourceLoader(ResourceLoader) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
- setReuseObjects(boolean) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Sets whether this unmarshaller should re-use objects.
- setRootElement(String) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Sets the name of the root element.
- setSchema(Resource) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Set the schema resource to use for validation.
- setSchemaLanguage(String) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Set the schema language.
- setSchemaLocation(String) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Sets the value of xsi:schemaLocation
attribute.When set, the xsi:schemaLocation
attribute will be
written for the root element.
- setSchemaResourceResolver(LSResourceResolver) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Set the resource resolver, as used to load the schema resources.
- setSchemas(Resource[]) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Set the schema resources to use for validation.
- setStandalone(Boolean) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
Set the document standalone flag for marshalling.
- setStreamDriver(HierarchicalStreamDriver) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
Set the XStream hierarchical stream driver to be used with stream readers and writers.
- setSupportedClasses(Class[]) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
Set the classes supported by this marshaller.
- setSupportJaxbElementClass(boolean) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
- setSuppressNamespaces(boolean) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Sets whether this marshaller should output namespaces.
- setSuppressXsiType(boolean) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Sets whether this marshaller should output the xsi:type
attribute.
- setTargetClass(Class) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Set the Castor target class.
- setTargetClass(Class<?>) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
Set the target class for this instance.
- setTargetClasses(Class[]) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Set the Castor target classes.
- setTargetPackage(String) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Set the names of package with the Castor descriptor classes.
- setTargetPackage(String) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
Set the target package for this instance.
- setTargetPackages(String[]) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Set the names of packages with the Castor descriptor classes.
- setUnmarshallerListener(Unmarshaller.Listener) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Set the Unmarshaller.Listener
to be registered with the JAXB Unmarshaller
.
- setUnmarshallerProperties(Map<String, ?>) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Set the JAXB Unmarshaller
properties.
- setUseAttributeFor(Map<?, ?>) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
Set the types to use XML attributes for.
- setUseAttributeForTypes(Class[]) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-
Set types to use XML attributes for.
- setUseXSITypeAtRoot(boolean) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Sets whether this marshaller should output the xsi:type
attribute for the root element.
- setValidating(boolean) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Set whether this marshaller should validate in- and outgoing documents.
- setValidating(boolean) - Method in class org.springframework.oxm.xmlbeans.XmlBeansMarshaller
-
Set whether this marshaller should validate in- and outgoing documents.
- setValidationEventHandler(ValidationEventHandler) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
Set the JAXB validation event handler.
- setWhitespacePreserve(boolean) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Set whether the Castor Unmarshaller
should preserve "ignorable" whitespace.
- setXmlOptions(XmlOptions) - Method in class org.springframework.oxm.xmlbeans.XmlBeansMarshaller
-
Set the XmlOptions
.
- setXMLReader(XMLReader) - Method in class org.springframework.oxm.support.MarshallingSource
-
Throws a UnsupportedOperationException
.
- supports(Class<?>) - Method in class org.springframework.oxm.castor.CastorMarshaller
-
Returns true
for all classes, i.e.
- supports(Type) - Method in interface org.springframework.oxm.GenericMarshaller
-
Indicates whether this marshaller can marshal instances of the supplied generic type.
- supports(Type) - Method in interface org.springframework.oxm.GenericUnmarshaller
-
Indicates whether this marshaller can marshal instances of the supplied generic type.
- supports(Class<?>) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
- supports(Type) - Method in class org.springframework.oxm.jaxb.Jaxb2Marshaller
-
- supports(Class<?>) - Method in class org.springframework.oxm.jibx.JibxMarshaller
-
- supports(Class<?>) - Method in interface org.springframework.oxm.Marshaller
-
Indicates whether this marshaller can marshal instances of the supplied type.
- supports(Class<?>) - Method in interface org.springframework.oxm.Unmarshaller
-
Indicates whether this unmarshaller can unmarshal instances of the supplied type.
- supports(Class<?>) - Method in class org.springframework.oxm.xmlbeans.XmlBeansMarshaller
-
This implementation returns true if the given class is an implementation of XmlObject
.
- supports(Class) - Method in class org.springframework.oxm.xstream.XStreamMarshaller
-