Uses of Interface
org.jboss.staxmapper.XMLElementReader
-
-
Uses of XMLElementReader in org.jboss.staxmapper
Methods in org.jboss.staxmapper with parameters of type XMLElementReader Modifier and Type Method Description <T> voidXMLMapper. registerRootElement(QName name, XMLElementReader<T> reader)Add a known root element which can be read byXMLExtendedStreamReader.handleAny(Object).Method parameters in org.jboss.staxmapper with type arguments of type XMLElementReader Modifier and Type Method Description default <T,N extends Namespace>
voidXMLMapper. registerRootElement(String localName, Set<N> namespaces, Function<N,XMLElementReader<T>> readerFactory)Convenience method that registers a root element associated with a known set of namespaces, whose reader can be created from the specified factory.<T> voidXMLMapper. registerRootElement(QName name, Supplier<XMLElementReader<T>> supplier)Add a known root element which can be read byXMLExtendedStreamReader.handleAny(Object).
-