net.opengis.ows.x11.SupportedCRSDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: SupportedCRS
* Namespace: http://www.opengis.net/ows/1.1
* Java type: net.opengis.ows.x11.SupportedCRSDocument
*
* 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 SupportedCRS(@http://www.opengis.net/ows/1.1) element.
*
* This is a complex type.
*/
public interface SupportedCRSDocument extends net.opengis.ows.x11.AvailableCRSDocument {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "supportedcrs845fdoctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "SupportedCRS" element
*/
java.lang.String getSupportedCRS();
/**
* Gets (as xml) the "SupportedCRS" element
*/
org.apache.xmlbeans.XmlAnyURI xgetSupportedCRS();
/**
* Sets the "SupportedCRS" element
*/
void setSupportedCRS(java.lang.String supportedCRS);
/**
* Sets (as xml) the "SupportedCRS" element
*/
void xsetSupportedCRS(org.apache.xmlbeans.XmlAnyURI supportedCRS);
}