imetadataprofile.java

来自「esri的ArcGIS Server超级学习模板程序(for java)」· Java 代码 · 共 22 行

JAVA
22
字号
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 + =
减小字号Ctrl + -
显示快捷键?