📄 imetadatadocument.java
字号:
package com.esri.solutions.jitk.common.metadata;
/**
* {@link IMetadataDocument} is an interface that objects can implement if they wish to represent a metadata document.
* <p>
* To retrieve fields from the metadata document, one must provide an {@link IMetadataExporter} implementation to this
* document's {@link #export(IMetadataExporter)} method. The exporter is responsible for extracting whatever information
* that it requires from the document, coverting it to a meaningful representation, and providing access to that information.
* </p>
*/
public interface IMetadataDocument {
/**
* Retrieves the {@link IMetadataID} by which this document can be referenced.
* @return The {@link IMetadataID}. Will never be {@code null}.
*/
public IMetadataID getMetadataID();
/**
* Uses the provided {@link IMetadataExporter} to convert the metadata to some meaningful format.
* @param exporter The {@link IMetadataExporter} to use. Cannot be {@code null}
*/
public void export(IMetadataExporter exporter);
/**
* Retrieves the {@link IMetadataProfile} of the catalog from which this document was retrieved. Clients can
* use this information to provide "hints" about the actual format of the metadata.
* @return The {@link IMetadataProfile}. Will never be {@code null}.
*/
public IMetadataProfile getMetadataProfile();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -