![JAR search and dependency download from the Maven repository](/logo.png)
org.infinispan.configuration.serializing.XMLExtendedStreamWriter Maven / Gradle / Ivy
package org.infinispan.configuration.serializing;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamWriter;
public interface XMLExtendedStreamWriter extends XMLStreamWriter {
void writeAttribute(String localName, String[] values) throws XMLStreamException;
void writeAttribute(String prefix, String namespaceURI, String localName, String[] values) throws XMLStreamException;
void writeAttribute(String namespaceURI, String localName, String[] values) throws XMLStreamException;
void writeAttribute(String localName, Iterable value) throws XMLStreamException;
void writeAttribute(String prefix, String namespaceURI, String localName, Iterable value) throws XMLStreamException;
void writeAttribute(String namespaceURI, String localName, Iterable value) throws XMLStreamException;
void setUnspecifiedElementNamespace(String namespace);
void writeStartElement(Enum> name) throws XMLStreamException;
void writeAttribute(Enum> name, String property) throws XMLStreamException;
void writeEmptyElement(Enum> name) throws XMLStreamException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy