Uses of Class
jakarta.xml.bind.annotation.adapters.XmlAdapter
-
Packages that use XmlAdapter Package Description jakarta.xml.bind Provides a runtime binding framework for client applications including unmarshalling, marshalling, and validation capabilities.jakarta.xml.bind.annotation.adapters XmlAdapter
and its spec-defined sub-classes to allow arbitrary Java classes to be used with Jakarta XML Binding.jakarta.xml.bind.helpers Jakarta XML Binding Provider Use Only: Provides partial default implementations for some of thejakarta.xml.bind
interfaces. -
-
Uses of XmlAdapter in jakarta.xml.bind
Methods in jakarta.xml.bind with type parameters of type XmlAdapter Modifier and Type Method Description <A extends XmlAdapter<?,?>>
AMarshaller. getAdapter(java.lang.Class<A> type)
Gets the adapter associated with the specified type.<A extends XmlAdapter<?,?>>
AUnmarshaller. getAdapter(java.lang.Class<A> type)
Gets the adapter associated with the specified type.<A extends XmlAdapter<?,?>>
voidMarshaller. setAdapter(A adapter)
Associates a configured instance ofXmlAdapter
with this marshaller.<A extends XmlAdapter<?,?>>
voidMarshaller. setAdapter(java.lang.Class<A> type, A adapter)
Associates a configured instance ofXmlAdapter
with this marshaller.<A extends XmlAdapter<?,?>>
voidUnmarshaller. setAdapter(A adapter)
Associates a configured instance ofXmlAdapter
with this unmarshaller.<A extends XmlAdapter<?,?>>
voidUnmarshaller. setAdapter(java.lang.Class<A> type, A adapter)
Associates a configured instance ofXmlAdapter
with this unmarshaller. -
Uses of XmlAdapter in jakarta.xml.bind.annotation.adapters
Subclasses of XmlAdapter in jakarta.xml.bind.annotation.adapters Modifier and Type Class Description class
CollapsedStringAdapter
Built-inXmlAdapter
to handlexs:token
and its derived types.class
HexBinaryAdapter
XmlAdapter
forxs:hexBinary
.class
NormalizedStringAdapter
XmlAdapter
to handlexs:normalizedString
.Methods in jakarta.xml.bind.annotation.adapters that return types with arguments of type XmlAdapter Modifier and Type Method Description java.lang.Class<? extends XmlAdapter>
value()
Points to the class that converts a value type to a bound type or vice versa. -
Uses of XmlAdapter in jakarta.xml.bind.helpers
Methods in jakarta.xml.bind.helpers with type parameters of type XmlAdapter Modifier and Type Method Description <A extends XmlAdapter<?,?>>
AAbstractMarshallerImpl. getAdapter(java.lang.Class<A> type)
<A extends XmlAdapter<?,?>>
AAbstractUnmarshallerImpl. getAdapter(java.lang.Class<A> type)
<A extends XmlAdapter<?,?>>
voidAbstractMarshallerImpl. setAdapter(A adapter)
<A extends XmlAdapter<?,?>>
voidAbstractMarshallerImpl. setAdapter(java.lang.Class<A> type, A adapter)
<A extends XmlAdapter<?,?>>
voidAbstractUnmarshallerImpl. setAdapter(A adapter)
<A extends XmlAdapter<?,?>>
voidAbstractUnmarshallerImpl. setAdapter(java.lang.Class<A> type, A adapter)
-