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

📄 imetadataprofile.java

📁 esri的ArcGIS Server超级学习模板程序(for java)
💻 JAVA
字号:
package com.esri.solutions.jitk.common.metadata;

import java.util.Map;

/**
 * Defines a profile for a metadata document.
 */
public interface IMetadataProfile {

	/**
	 * Retrieves the Id of this profile.
	 * @return {@link String} containing the Id; {@code null} will never be returned.
	 */
	public String getId();
	/**
	 * 
	 * @return A {@link Map} of {@link IMetadataExporter IMetadataExporters} that can work with data in this profile.  {@code null} will never
	 * be returned. 
	 */
	public Map<String, IMetadataExporter> getExporters();
}

⌨️ 快捷键说明

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