net.opengis.wmts.x10.ThemeDocument Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: Theme
* Namespace: http://www.opengis.net/wmts/1.0
* Java type: net.opengis.wmts.x10.ThemeDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.wmts.x10;
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 Theme(@http://www.opengis.net/wmts/1.0) element.
*
* This is a complex type.
*/
public interface ThemeDocument extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "theme3a8bdoctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "Theme" element
*/
net.opengis.wmts.x10.ThemeDocument.Theme getTheme();
/**
* Sets the "Theme" element
*/
void setTheme(net.opengis.wmts.x10.ThemeDocument.Theme theme);
/**
* Appends and returns a new empty "Theme" element
*/
net.opengis.wmts.x10.ThemeDocument.Theme addNewTheme();
/**
* An XML Theme(@http://www.opengis.net/wmts/1.0).
*
* This is a complex type.
*/
public interface Theme extends net.opengis.ows.x11.DescriptionType {
ElementFactory Factory = new ElementFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "themedda0elemtype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "Identifier" element
*/
net.opengis.ows.x11.CodeType getIdentifier();
/**
* Sets the "Identifier" element
*/
void setIdentifier(net.opengis.ows.x11.CodeType identifier);
/**
* Appends and returns a new empty "Identifier" element
*/
net.opengis.ows.x11.CodeType addNewIdentifier();
/**
* Gets a List of "Theme" elements
*/
java.util.List getThemeList();
/**
* Gets array of all "Theme" elements
*/
net.opengis.wmts.x10.ThemeDocument.Theme[] getThemeArray();
/**
* Gets ith "Theme" element
*/
net.opengis.wmts.x10.ThemeDocument.Theme getThemeArray(int i);
/**
* Returns number of "Theme" element
*/
int sizeOfThemeArray();
/**
* Sets array of all "Theme" element
*/
void setThemeArray(net.opengis.wmts.x10.ThemeDocument.Theme[] themeArray);
/**
* Sets ith "Theme" element
*/
void setThemeArray(int i, net.opengis.wmts.x10.ThemeDocument.Theme theme);
/**
* Inserts and returns a new empty value (as xml) as the ith "Theme" element
*/
net.opengis.wmts.x10.ThemeDocument.Theme insertNewTheme(int i);
/**
* Appends and returns a new empty value (as xml) as the last "Theme" element
*/
net.opengis.wmts.x10.ThemeDocument.Theme addNewTheme();
/**
* Removes the ith "Theme" element
*/
void removeTheme(int i);
/**
* Gets a List of "LayerRef" elements
*/
java.util.List getLayerRefList();
/**
* Gets array of all "LayerRef" elements
*/
java.lang.String[] getLayerRefArray();
/**
* Gets ith "LayerRef" element
*/
java.lang.String getLayerRefArray(int i);
/**
* Gets (as xml) a List of "LayerRef" elements
*/
java.util.List xgetLayerRefList();
/**
* Gets (as xml) array of all "LayerRef" elements
*/
org.apache.xmlbeans.XmlAnyURI[] xgetLayerRefArray();
/**
* Gets (as xml) ith "LayerRef" element
*/
org.apache.xmlbeans.XmlAnyURI xgetLayerRefArray(int i);
/**
* Returns number of "LayerRef" element
*/
int sizeOfLayerRefArray();
/**
* Sets array of all "LayerRef" element
*/
void setLayerRefArray(java.lang.String[] layerRefArray);
/**
* Sets ith "LayerRef" element
*/
void setLayerRefArray(int i, java.lang.String layerRef);
/**
* Sets (as xml) array of all "LayerRef" element
*/
void xsetLayerRefArray(org.apache.xmlbeans.XmlAnyURI[] layerRefArray);
/**
* Sets (as xml) ith "LayerRef" element
*/
void xsetLayerRefArray(int i, org.apache.xmlbeans.XmlAnyURI layerRef);
/**
* Inserts the value as the ith "LayerRef" element
*/
void insertLayerRef(int i, java.lang.String layerRef);
/**
* Appends the value as the last "LayerRef" element
*/
void addLayerRef(java.lang.String layerRef);
/**
* Inserts and returns a new empty value (as xml) as the ith "LayerRef" element
*/
org.apache.xmlbeans.XmlAnyURI insertNewLayerRef(int i);
/**
* Appends and returns a new empty value (as xml) as the last "LayerRef" element
*/
org.apache.xmlbeans.XmlAnyURI addNewLayerRef();
/**
* Removes the ith "LayerRef" element
*/
void removeLayerRef(int i);
}
}