net.opengis.ows.x11.ExceptionReportDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: ExceptionReport
* Namespace: http://www.opengis.net/ows/1.1
* Java type: net.opengis.ows.x11.ExceptionReportDocument
*
* 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 ExceptionReport(@http://www.opengis.net/ows/1.1) element.
*
* This is a complex type.
*/
public interface ExceptionReportDocument extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "exceptionreportadc4doctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "ExceptionReport" element
*/
net.opengis.ows.x11.ExceptionReportDocument.ExceptionReport getExceptionReport();
/**
* Sets the "ExceptionReport" element
*/
void setExceptionReport(net.opengis.ows.x11.ExceptionReportDocument.ExceptionReport exceptionReport);
/**
* Appends and returns a new empty "ExceptionReport" element
*/
net.opengis.ows.x11.ExceptionReportDocument.ExceptionReport addNewExceptionReport();
/**
* An XML ExceptionReport(@http://www.opengis.net/ows/1.1).
*
* This is a complex type.
*/
public interface ExceptionReport extends org.apache.xmlbeans.XmlObject {
ElementFactory Factory = new ElementFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "exceptionreport36f5elemtype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets a List of "Exception" elements
*/
java.util.List getExceptionList();
/**
* Gets array of all "Exception" elements
*/
net.opengis.ows.x11.ExceptionType[] getExceptionArray();
/**
* Gets ith "Exception" element
*/
net.opengis.ows.x11.ExceptionType getExceptionArray(int i);
/**
* Returns number of "Exception" element
*/
int sizeOfExceptionArray();
/**
* Sets array of all "Exception" element
*/
void setExceptionArray(net.opengis.ows.x11.ExceptionType[] exceptionArray);
/**
* Sets ith "Exception" element
*/
void setExceptionArray(int i, net.opengis.ows.x11.ExceptionType exception);
/**
* Inserts and returns a new empty value (as xml) as the ith "Exception" element
*/
net.opengis.ows.x11.ExceptionType insertNewException(int i);
/**
* Appends and returns a new empty value (as xml) as the last "Exception" element
*/
net.opengis.ows.x11.ExceptionType addNewException();
/**
* Removes the ith "Exception" element
*/
void removeException(int i);
/**
* Gets the "version" attribute
*/
java.lang.String getVersion();
/**
* Gets (as xml) the "version" attribute
*/
net.opengis.ows.x11.ExceptionReportDocument.ExceptionReport.Version xgetVersion();
/**
* Sets the "version" attribute
*/
void setVersion(java.lang.String version);
/**
* Sets (as xml) the "version" attribute
*/
void xsetVersion(net.opengis.ows.x11.ExceptionReportDocument.ExceptionReport.Version version);
/**
* Gets the "lang" attribute
*/
java.lang.String getLang();
/**
* Gets (as xml) the "lang" attribute
*/
org.apache.xmlbeans.impl.xb.xmlschema.LangAttribute.Lang xgetLang();
/**
* True if has "lang" attribute
*/
boolean isSetLang();
/**
* Sets the "lang" attribute
*/
void setLang(java.lang.String lang);
/**
* Sets (as xml) the "lang" attribute
*/
void xsetLang(org.apache.xmlbeans.impl.xb.xmlschema.LangAttribute.Lang lang);
/**
* Unsets the "lang" attribute
*/
void unsetLang();
/**
* An XML version(@).
*
* This is an atomic type that is a restriction of net.opengis.ows.x11.ExceptionReportDocument$ExceptionReport$Version.
*/
public interface Version extends org.apache.xmlbeans.XmlString {
ElementFactory Factory = new ElementFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "version31b5attrtype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
}
}
}