net.opengis.ows.x11.WGS84BoundingBoxDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: WGS84BoundingBox
* Namespace: http://www.opengis.net/ows/1.1
* Java type: net.opengis.ows.x11.WGS84BoundingBoxDocument
*
* 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 WGS84BoundingBox(@http://www.opengis.net/ows/1.1) element.
*
* This is a complex type.
*/
public interface WGS84BoundingBoxDocument extends net.opengis.ows.x11.BoundingBoxDocument {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "wgs84boundingbox86cddoctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "WGS84BoundingBox" element
*/
net.opengis.ows.x11.WGS84BoundingBoxType getWGS84BoundingBox();
/**
* Sets the "WGS84BoundingBox" element
*/
void setWGS84BoundingBox(net.opengis.ows.x11.WGS84BoundingBoxType wgs84BoundingBox);
/**
* Appends and returns a new empty "WGS84BoundingBox" element
*/
net.opengis.ows.x11.WGS84BoundingBoxType addNewWGS84BoundingBox();
}