org.opengis.cite.ogcapifeatures10.TestRunArg Maven / Gradle / Ivy
package org.opengis.cite.ogcapifeatures10;
/**
* 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,
/**
* The number of collections to test (a value less or equal to 0 means all
* collections).
*/
NOOFCOLLECTIONS;
/** {@inheritDoc} */
@Override
public String toString() {
return name().toLowerCase();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy