📄 imetadataprofile.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 + -