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

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

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


    /**
     * Gets the "TileMatrixSet" element
     */
    net.opengis.wmts.x10.TileMatrixSetDocument.TileMatrixSet getTileMatrixSet();

    /**
     * Sets the "TileMatrixSet" element
     */
    void setTileMatrixSet(net.opengis.wmts.x10.TileMatrixSetDocument.TileMatrixSet tileMatrixSet);

    /**
     * Appends and returns a new empty "TileMatrixSet" element
     */
    net.opengis.wmts.x10.TileMatrixSetDocument.TileMatrixSet addNewTileMatrixSet();

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

        /**
         * True if has "BoundingBox" element
         */
        boolean isSetBoundingBox();

        /**
         * Sets the "BoundingBox" element
         */
        void setBoundingBox(net.opengis.ows.x11.BoundingBoxType boundingBox);

        /**
         * Appends and returns a new empty "BoundingBox" element
         */
        net.opengis.ows.x11.BoundingBoxType addNewBoundingBox();

        /**
         * Unsets the "BoundingBox" element
         */
        void unsetBoundingBox();

        /**
         * Gets the "SupportedCRS" element
         */
        java.lang.String getSupportedCRS();

        /**
         * Gets (as xml) the "SupportedCRS" element
         */
        org.apache.xmlbeans.XmlAnyURI xgetSupportedCRS();

        /**
         * Sets the "SupportedCRS" element
         */
        void setSupportedCRS(java.lang.String supportedCRS);

        /**
         * Sets (as xml) the "SupportedCRS" element
         */
        void xsetSupportedCRS(org.apache.xmlbeans.XmlAnyURI supportedCRS);

        /**
         * Gets the "WellKnownScaleSet" element
         */
        java.lang.String getWellKnownScaleSet();

        /**
         * Gets (as xml) the "WellKnownScaleSet" element
         */
        org.apache.xmlbeans.XmlAnyURI xgetWellKnownScaleSet();

        /**
         * True if has "WellKnownScaleSet" element
         */
        boolean isSetWellKnownScaleSet();

        /**
         * Sets the "WellKnownScaleSet" element
         */
        void setWellKnownScaleSet(java.lang.String wellKnownScaleSet);

        /**
         * Sets (as xml) the "WellKnownScaleSet" element
         */
        void xsetWellKnownScaleSet(org.apache.xmlbeans.XmlAnyURI wellKnownScaleSet);

        /**
         * Unsets the "WellKnownScaleSet" element
         */
        void unsetWellKnownScaleSet();

        /**
         * Gets a List of "TileMatrix" elements
         */
        java.util.List getTileMatrixList();

        /**
         * Gets array of all "TileMatrix" elements
         */
        net.opengis.wmts.x10.TileMatrixDocument.TileMatrix[] getTileMatrixArray();

        /**
         * Gets ith "TileMatrix" element
         */
        net.opengis.wmts.x10.TileMatrixDocument.TileMatrix getTileMatrixArray(int i);

        /**
         * Returns number of "TileMatrix" element
         */
        int sizeOfTileMatrixArray();

        /**
         * Sets array of all "TileMatrix" element
         */
        void setTileMatrixArray(net.opengis.wmts.x10.TileMatrixDocument.TileMatrix[] tileMatrixArray);

        /**
         * Sets ith "TileMatrix" element
         */
        void setTileMatrixArray(int i, net.opengis.wmts.x10.TileMatrixDocument.TileMatrix tileMatrix);

        /**
         * Inserts and returns a new empty value (as xml) as the ith "TileMatrix" element
         */
        net.opengis.wmts.x10.TileMatrixDocument.TileMatrix insertNewTileMatrix(int i);

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

        /**
         * Removes the ith "TileMatrix" element
         */
        void removeTileMatrix(int i);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy