
org.infinispan.configuration.parsing.XMLExtendedStreamReader Maven / Gradle / Ivy
package org.infinispan.configuration.parsing;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;
/**
* An XML stream reader that can read nested {@code } content using a registered set of root
* elements.
*
* @author David M. Lloyd
* @since 6.0
*/
public interface XMLExtendedStreamReader extends XMLStreamReader {
/**
* Handle an {@code }-type nested element, passing in the given value, returning after
* the end of the element. Must be positioned on a {@code START_ELEMENT} or an exception will
* occur. On return the cursor will be positioned on the corresponding {@code END_ELEMENT}.
*
* @param value
* the value to pass in
* @throws XMLStreamException
* if an error occurs (e.g. the given value does not match the type of the handler for
* the element, or the element is unknown)
*/
void handleAny(ConfigurationBuilderHolder holder) throws XMLStreamException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy