imetadatadocument.java
来自「esri的ArcGIS Server超级学习模板程序(for java)」· Java 代码 · 共 31 行
JAVA
31 行
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 + =
减小字号Ctrl + -
显示快捷键?