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

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

There is a newer version: 1.2
Show newest version
package org.opengis.cite.ogcapiprocesses10;

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

	/**
	 * An absolute URI that refers to a representation of the test subject or metadata
	 * about it.
	 */
	IUT,

	/**
	 * The number of collections to test (a value less or equal to 0 means all
	 * collections).
	 */
	NOOFCOLLECTIONS,

	/**
	 * The id of the echo process.
	 */
	ECHOPROCESSID,

	/**
	 * Limit of processes to be tested against the OGC Process Description Conformance
	 * Class.
	 */
	PROCESSTESTLIMIT,

	/**
	 * Use local OpenAPI schema.
	 */
	USELOCALSCHEMA,

	/**
	 * Boolean indicating whether all processes should be tested against the OGC Process
	 * Description Conformance Class.
	 */
	TESTALLPROCESSES;

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy