Uses of Class
javax.xml.bind.annotation.adapters.XmlAdapter
-
Packages that use XmlAdapter Package Description com.sun.xml.bind com.sun.xml.bind.v2.runtime Code that implements JAXBContext, Unmarshaller, and Marshaller.com.sun.xml.bind.v2.runtime.unmarshaller javax.xml.bind Provides a runtime binding framework for client applications including unmarshalling, marshalling, and validation capabilities.javax.xml.bind.annotation.adapters XmlAdapterand its spec-defined sub-classes to allow arbitrary Java classes to be used with Jakarta XML Binding.javax.xml.bind.helpers Jakarta XML Binding Provider Use Only: Provides partial default implementations for some of thejavax.xml.bindinterfaces. -
-
Uses of XmlAdapter in com.sun.xml.bind
Subclasses of XmlAdapter in com.sun.xml.bind Modifier and Type Class Description classAnyTypeAdapterXmlAdapteruseful for mapping interfaces. -
Uses of XmlAdapter in com.sun.xml.bind.v2.runtime
Subclasses of XmlAdapter in com.sun.xml.bind.v2.runtime Modifier and Type Class Description static classRuntimeUtil.ToStringAdapterXmlAdapter for printing arbitrary object by usingObject.toString().classSwaRefAdapterXmlAdapterthat binds the value as a SOAP attachment.classSwaRefAdapterMarkerMarker class used to identify swaref attachments and to generate appropriate annotations later.Methods in com.sun.xml.bind.v2.runtime with type parameters of type XmlAdapter Modifier and Type Method Description <T extends XmlAdapter>
booleanCoordinator. containsAdapter(Class<T> type)<T extends XmlAdapter>
TCoordinator. getAdapter(Class<T> key)Gets the instance of the adapter.<A extends XmlAdapter>
AMarshallerImpl. getAdapter(Class<A> type)<A extends XmlAdapter>
voidMarshallerImpl. setAdapter(Class<A> type, A adapter)Methods in com.sun.xml.bind.v2.runtime that return XmlAdapter Modifier and Type Method Description XmlAdapterCoordinator. putAdapter(Class<? extends XmlAdapter> c, XmlAdapter a)Methods in com.sun.xml.bind.v2.runtime with parameters of type XmlAdapter Modifier and Type Method Description XmlAdapterCoordinator. putAdapter(Class<? extends XmlAdapter> c, XmlAdapter a)Method parameters in com.sun.xml.bind.v2.runtime with type arguments of type XmlAdapter Modifier and Type Method Description XmlAdapterCoordinator. putAdapter(Class<? extends XmlAdapter> c, XmlAdapter a) -
Uses of XmlAdapter in com.sun.xml.bind.v2.runtime.unmarshaller
Methods in com.sun.xml.bind.v2.runtime.unmarshaller with type parameters of type XmlAdapter Modifier and Type Method Description <A extends XmlAdapter>
AUnmarshallerImpl. getAdapter(Class<A> type)<A extends XmlAdapter>
voidUnmarshallerImpl. setAdapter(Class<A> type, A adapter) -
Uses of XmlAdapter in javax.xml.bind
Methods in javax.xml.bind with type parameters of type XmlAdapter Modifier and Type Method Description <A extends XmlAdapter>
AMarshaller. getAdapter(Class<A> type)Gets the adapter associated with the specified type.<A extends XmlAdapter>
AUnmarshaller. getAdapter(Class<A> type)Gets the adapter associated with the specified type.<A extends XmlAdapter>
voidMarshaller. setAdapter(Class<A> type, A adapter)Associates a configured instance ofXmlAdapterwith this marshaller.<A extends XmlAdapter>
voidUnmarshaller. setAdapter(Class<A> type, A adapter)Associates a configured instance ofXmlAdapterwith this unmarshaller.Methods in javax.xml.bind with parameters of type XmlAdapter Modifier and Type Method Description voidMarshaller. setAdapter(XmlAdapter adapter)Associates a configured instance ofXmlAdapterwith this marshaller.voidUnmarshaller. setAdapter(XmlAdapter adapter)Associates a configured instance ofXmlAdapterwith this unmarshaller. -
Uses of XmlAdapter in javax.xml.bind.annotation.adapters
Subclasses of XmlAdapter in javax.xml.bind.annotation.adapters Modifier and Type Class Description classCollapsedStringAdapterBuilt-inXmlAdapterto handlexs:tokenand its derived types.classHexBinaryAdapterXmlAdapterforxs:hexBinary.classNormalizedStringAdapterXmlAdapterto handlexs:normalizedString.Methods in javax.xml.bind.annotation.adapters that return types with arguments of type XmlAdapter Modifier and Type Method Description Class<? extends XmlAdapter>value()Points to the class that converts a value type to a bound type or vice versa. -
Uses of XmlAdapter in javax.xml.bind.helpers
Methods in javax.xml.bind.helpers with type parameters of type XmlAdapter Modifier and Type Method Description <A extends XmlAdapter>
AAbstractMarshallerImpl. getAdapter(Class<A> type)<A extends XmlAdapter>
AAbstractUnmarshallerImpl. getAdapter(Class<A> type)<A extends XmlAdapter>
voidAbstractMarshallerImpl. setAdapter(Class<A> type, A adapter)<A extends XmlAdapter>
voidAbstractUnmarshallerImpl. setAdapter(Class<A> type, A adapter)Methods in javax.xml.bind.helpers with parameters of type XmlAdapter Modifier and Type Method Description voidAbstractMarshallerImpl. setAdapter(XmlAdapter adapter)voidAbstractUnmarshallerImpl. setAdapter(XmlAdapter adapter)
-