net.opengis.ows.x11.OutputFormatDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: OutputFormat
* Namespace: http://www.opengis.net/ows/1.1
* Java type: net.opengis.ows.x11.OutputFormatDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.ows.x11;
import org.apache.xmlbeans.impl.schema.ElementFactory;
import org.apache.xmlbeans.impl.schema.AbstractDocumentFactory;
import org.apache.xmlbeans.impl.schema.DocumentFactory;
import org.apache.xmlbeans.impl.schema.SimpleTypeFactory;
/**
* A document containing one OutputFormat(@http://www.opengis.net/ows/1.1) element.
*
* This is a complex type.
*/
public interface OutputFormatDocument extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "outputformat961ddoctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "OutputFormat" element
*/
java.lang.String getOutputFormat();
/**
* Gets (as xml) the "OutputFormat" element
*/
net.opengis.ows.x11.MimeType xgetOutputFormat();
/**
* Sets the "OutputFormat" element
*/
void setOutputFormat(java.lang.String outputFormat);
/**
* Sets (as xml) the "OutputFormat" element
*/
void xsetOutputFormat(net.opengis.ows.x11.MimeType outputFormat);
}