All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.configuration.serializing.XMLExtendedStreamWriter Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
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