org.opengis.cite.gpkg12.TestRunArg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ets-gpkg12 Show documentation
Show all versions of ets-gpkg12 Show documentation
This test suite checks GeoPackage 1.2 files for standards conformance.
The newest version!
package org.opengis.cite.gpkg12;
/**
* 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,
ICS;
@Override
public String toString() {
return name().toLowerCase();
}
}