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

org.opengis.cite.geotiff11.SuiteAttribute Maven / Gradle / Ivy

The newest version!
package org.opengis.cite.geotiff11;

import java.io.File;

import org.w3c.dom.Document;

import jakarta.ws.rs.client.Client;

/**
 * An enumerated type defining ISuite attributes that may be set to constitute a shared
 * test fixture.
 */
@SuppressWarnings("rawtypes")
public enum SuiteAttribute {

	/**
	 * A client component for interacting with HTTP endpoints.
	 */
	CLIENT("httpClient", Client.class),
	/**
	 * A DOM Document that represents the test subject or metadata about it.
	 */
	TEST_SUBJECT("testSubject", Document.class),
	/**
	 * A File containing the test subject or a description of it.
	 */
	TEST_SUBJ_FILE("testSubjectFile", File.class),
	/**
	 * GeoTiff metadata document.
	 */
	TEST_SUBJ_GEOTIFF("testSubjGeotiff", Document.class);

	private final Class attrType;

	private final String attrName;

	private SuiteAttribute(String attrName, Class attrType) {
		this.attrName = attrName;
		this.attrType = attrType;
	}

	/**
	 * 

* getType. *

* @return a {@link java.lang.Class} object */ public Class getType() { return attrType; } /** *

* getName. *

* @return a {@link java.lang.String} object */ public String getName() { return attrName; } /** {@inheritDoc} */ @Override public String toString() { StringBuilder sb = new StringBuilder(attrName); sb.append('(').append(attrType.getName()).append(')'); return sb.toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy