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

org.opengis.cite.iso19136.TestRunArg Maven / Gradle / Ivy

Go to download

Checks GML application schemas or data sets for conformance to ISO 19136:2007.

There is a newer version: 3.2.1-r18
Show newest version
package org.opengis.cite.iso19136;

/**
 * An enumerated type defining all recognized test run arguments.
 */
public enum TestRunArg {

    /**
     * An absolute URI that refers to a representation of the test subject or
     * metadata about it.
     */
    IUT,
    /**
     * An absolute URI referring to a GML application schema (XML Schema)
     * resource.
     */
    XSD,
    /**
     * An absolute URI referring to a Schematron schema (ISO 19757-3) that
     * defines supplementary data constraints.
     */
    SCH,
    /**
     * An absolute URI referring to a GML data resource.
     */
    GML;

    @Override
    public String toString() {
        return name().toLowerCase();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy