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