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

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

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


    /**
     * Gets the "TileMatrix" element
     */
    net.opengis.wmts.x10.TileMatrixDocument.TileMatrix getTileMatrix();

    /**
     * Sets the "TileMatrix" element
     */
    void setTileMatrix(net.opengis.wmts.x10.TileMatrixDocument.TileMatrix tileMatrix);

    /**
     * Appends and returns a new empty "TileMatrix" element
     */
    net.opengis.wmts.x10.TileMatrixDocument.TileMatrix addNewTileMatrix();

    /**
     * An XML TileMatrix(@http://www.opengis.net/wmts/1.0).
     *
     * This is a complex type.
     */
    public interface TileMatrix extends net.opengis.ows.x11.DescriptionType {
        ElementFactory Factory = new ElementFactory<>(net.wirelabs.jmaps.viewer.system.xml.TypeSystemHolder.typeSystem, "tilematrixe238elemtype");
        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 the "ScaleDenominator" element
         */
        double getScaleDenominator();

        /**
         * Gets (as xml) the "ScaleDenominator" element
         */
        org.apache.xmlbeans.XmlDouble xgetScaleDenominator();

        /**
         * Sets the "ScaleDenominator" element
         */
        void setScaleDenominator(double scaleDenominator);

        /**
         * Sets (as xml) the "ScaleDenominator" element
         */
        void xsetScaleDenominator(org.apache.xmlbeans.XmlDouble scaleDenominator);

        /**
         * Gets the "TopLeftCorner" element
         */
        java.util.List getTopLeftCorner();

        /**
         * Gets (as xml) the "TopLeftCorner" element
         */
        net.opengis.ows.x11.PositionType xgetTopLeftCorner();

        /**
         * Sets the "TopLeftCorner" element
         */
        void setTopLeftCorner(java.util.List topLeftCorner);

        /**
         * Sets (as xml) the "TopLeftCorner" element
         */
        void xsetTopLeftCorner(net.opengis.ows.x11.PositionType topLeftCorner);

        /**
         * Gets the "TileWidth" element
         */
        java.math.BigInteger getTileWidth();

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

        /**
         * Sets the "TileWidth" element
         */
        void setTileWidth(java.math.BigInteger tileWidth);

        /**
         * Sets (as xml) the "TileWidth" element
         */
        void xsetTileWidth(org.apache.xmlbeans.XmlPositiveInteger tileWidth);

        /**
         * Gets the "TileHeight" element
         */
        java.math.BigInteger getTileHeight();

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

        /**
         * Sets the "TileHeight" element
         */
        void setTileHeight(java.math.BigInteger tileHeight);

        /**
         * Sets (as xml) the "TileHeight" element
         */
        void xsetTileHeight(org.apache.xmlbeans.XmlPositiveInteger tileHeight);

        /**
         * Gets the "MatrixWidth" element
         */
        java.math.BigInteger getMatrixWidth();

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

        /**
         * Sets the "MatrixWidth" element
         */
        void setMatrixWidth(java.math.BigInteger matrixWidth);

        /**
         * Sets (as xml) the "MatrixWidth" element
         */
        void xsetMatrixWidth(org.apache.xmlbeans.XmlPositiveInteger matrixWidth);

        /**
         * Gets the "MatrixHeight" element
         */
        java.math.BigInteger getMatrixHeight();

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

        /**
         * Sets the "MatrixHeight" element
         */
        void setMatrixHeight(java.math.BigInteger matrixHeight);

        /**
         * Sets (as xml) the "MatrixHeight" element
         */
        void xsetMatrixHeight(org.apache.xmlbeans.XmlPositiveInteger matrixHeight);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy