net.opengis.ows.x11.IndividualNameDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: IndividualName
* Namespace: http://www.opengis.net/ows/1.1
* Java type: net.opengis.ows.x11.IndividualNameDocument
*
* 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 IndividualName(@http://www.opengis.net/ows/1.1) element.
*
* This is a complex type.
*/
public interface IndividualNameDocument extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "individualname8e71doctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "IndividualName" element
*/
java.lang.String getIndividualName();
/**
* Gets (as xml) the "IndividualName" element
*/
org.apache.xmlbeans.XmlString xgetIndividualName();
/**
* Sets the "IndividualName" element
*/
void setIndividualName(java.lang.String individualName);
/**
* Sets (as xml) the "IndividualName" element
*/
void xsetIndividualName(org.apache.xmlbeans.XmlString individualName);
}