All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.opengis.wmts.x10.ThemesDocument Maven / Gradle / Ivy

The newest version!
/*
 * An XML document type.
 * Localname: Themes
 * Namespace: http://www.opengis.net/wmts/1.0
 * Java type: net.opengis.wmts.x10.ThemesDocument
 *
 * 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 Themes(@http://www.opengis.net/wmts/1.0) element.
 *
 * This is a complex type.
 */
public interface ThemesDocument extends org.apache.xmlbeans.XmlObject {
    DocumentFactory Factory = new DocumentFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "themes875edoctype");
    org.apache.xmlbeans.SchemaType type = Factory.getType();


    /**
     * Gets the "Themes" element
     */
    net.opengis.wmts.x10.ThemesDocument.Themes getThemes();

    /**
     * Sets the "Themes" element
     */
    void setThemes(net.opengis.wmts.x10.ThemesDocument.Themes themes);

    /**
     * Appends and returns a new empty "Themes" element
     */
    net.opengis.wmts.x10.ThemesDocument.Themes addNewThemes();

    /**
     * An XML Themes(@http://www.opengis.net/wmts/1.0).
     *
     * This is a complex type.
     */
    public interface Themes extends org.apache.xmlbeans.XmlObject {
        ElementFactory Factory = new ElementFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "themesaf98elemtype");
        org.apache.xmlbeans.SchemaType type = Factory.getType();


        /**
         * 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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy