⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wcscoverageinfo.java

📁 esri的ArcGIS Server超级学习模板程序(for java)
💻 JAVA
字号:
/**
 * 
 */
package com.esri.solutions.jitk.datasources.ogc.wcs.info;

import java.util.ArrayList;
import java.util.List;

/**
 * @author vlad2928
 *
 */
public class WCSCoverageInfo extends WCSCoverageInfoBrief {
	
	private List<OGCCRS> requestCRSs;
	private List<OGCCRS> responseCRSs;
	private List<OGCCRS> nativeCRSs;
	
	private String nativeFormat;
	private List<String> supportedFormats;
	
	private String defaultInterpolation;
	private List<String> supportedInterpolations;
	
	protected WCSSpatialDomainInfoBrief spatialDomain;
	
	
	public WCSCoverageInfo() {
		
		this.spatialDomain = new WCSSpatialDomainInfoBrief();
		
		this.requestCRSs = new ArrayList<OGCCRS>();
		this.responseCRSs = new ArrayList<OGCCRS>();
		this.nativeCRSs = new ArrayList<OGCCRS>();
		
		this.nativeFormat = "";
		this.supportedFormats = new ArrayList<String>();
		
		this.defaultInterpolation = "";
		this.supportedInterpolations = new ArrayList<String>();
	}

	public List<OGCCRS> getRequestCRSs() {
		return this.requestCRSs;
	}

	public void addRequestCRS(String requestCRS) {
		this.requestCRSs.add(new OGCCRS(requestCRS));
	}

	public List<OGCCRS> getResponseCRSs() {
		return this.responseCRSs;
	}

	public void addResponseCRS(String responseCRS) {
		this.responseCRSs.add(new OGCCRS(responseCRS));
	}

	public List<OGCCRS> getNativeCRSs() {
		return this.nativeCRSs;
	}

	public void addNativeCRS(String nativeCRS) {
		this.nativeCRSs.add(new OGCCRS(nativeCRS));
	}

	public String getNativeFormat() {
		return this.nativeFormat;
	}

	public void setNativeFormat(String nativeFormat) {
		this.nativeFormat = nativeFormat;
	}

	public List<String> getSupportedFormats() {
		return this.supportedFormats;
	}

	public void addSupportedFormat(String supportedFormat) {
		this.supportedFormats.add(supportedFormat);
	}

	public String getDefaultInterpolation() {
		return this.defaultInterpolation;
	}

	public void setDefaultInterpolation(String defaultInterpolation) {
		this.defaultInterpolation = defaultInterpolation;
	}

	public List<String> getSupportedInterpolations() {
		return this.supportedInterpolations;
	}

	public void addSupportedInterpolation(String supportedInterpolation) {
		this.supportedInterpolations.add(supportedInterpolation);
	}

	public WCSSpatialDomainInfoBrief getSpatialDomain() {
		return this.spatialDomain;
	}

	public void setSpatialDomain(WCSSpatialDomainInfoBrief spatialDomain) {
		this.spatialDomain = spatialDomain;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -