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