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

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

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


    /**
     * Gets the "TileMatrixLimits" element
     */
    net.opengis.wmts.x10.TileMatrixLimitsDocument.TileMatrixLimits getTileMatrixLimits();

    /**
     * Sets the "TileMatrixLimits" element
     */
    void setTileMatrixLimits(net.opengis.wmts.x10.TileMatrixLimitsDocument.TileMatrixLimits tileMatrixLimits);

    /**
     * Appends and returns a new empty "TileMatrixLimits" element
     */
    net.opengis.wmts.x10.TileMatrixLimitsDocument.TileMatrixLimits addNewTileMatrixLimits();

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


        /**
         * Gets the "TileMatrix" element
         */
        java.lang.String getTileMatrix();

        /**
         * Gets (as xml) the "TileMatrix" element
         */
        org.apache.xmlbeans.XmlString xgetTileMatrix();

        /**
         * Sets the "TileMatrix" element
         */
        void setTileMatrix(java.lang.String tileMatrix);

        /**
         * Sets (as xml) the "TileMatrix" element
         */
        void xsetTileMatrix(org.apache.xmlbeans.XmlString tileMatrix);

        /**
         * Gets the "MinTileRow" element
         */
        java.math.BigInteger getMinTileRow();

        /**
         * Gets (as xml) the "MinTileRow" element
         */
        org.apache.xmlbeans.XmlPositiveInteger xgetMinTileRow();

        /**
         * Sets the "MinTileRow" element
         */
        void setMinTileRow(java.math.BigInteger minTileRow);

        /**
         * Sets (as xml) the "MinTileRow" element
         */
        void xsetMinTileRow(org.apache.xmlbeans.XmlPositiveInteger minTileRow);

        /**
         * Gets the "MaxTileRow" element
         */
        java.math.BigInteger getMaxTileRow();

        /**
         * Gets (as xml) the "MaxTileRow" element
         */
        org.apache.xmlbeans.XmlPositiveInteger xgetMaxTileRow();

        /**
         * Sets the "MaxTileRow" element
         */
        void setMaxTileRow(java.math.BigInteger maxTileRow);

        /**
         * Sets (as xml) the "MaxTileRow" element
         */
        void xsetMaxTileRow(org.apache.xmlbeans.XmlPositiveInteger maxTileRow);

        /**
         * Gets the "MinTileCol" element
         */
        java.math.BigInteger getMinTileCol();

        /**
         * Gets (as xml) the "MinTileCol" element
         */
        org.apache.xmlbeans.XmlPositiveInteger xgetMinTileCol();

        /**
         * Sets the "MinTileCol" element
         */
        void setMinTileCol(java.math.BigInteger minTileCol);

        /**
         * Sets (as xml) the "MinTileCol" element
         */
        void xsetMinTileCol(org.apache.xmlbeans.XmlPositiveInteger minTileCol);

        /**
         * Gets the "MaxTileCol" element
         */
        java.math.BigInteger getMaxTileCol();

        /**
         * Gets (as xml) the "MaxTileCol" element
         */
        org.apache.xmlbeans.XmlPositiveInteger xgetMaxTileCol();

        /**
         * Sets the "MaxTileCol" element
         */
        void setMaxTileCol(java.math.BigInteger maxTileCol);

        /**
         * Sets (as xml) the "MaxTileCol" element
         */
        void xsetMaxTileCol(org.apache.xmlbeans.XmlPositiveInteger maxTileCol);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy