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

📄 metadataexporterstate.java

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

/**
 * {@code MetadataExporterState} is an {@code enum} that defines the valid states in which 
 * an {@link IMetadataExporter} can exist.  
 */
public enum MetadataExporterState {

	/**
	 * The state of an {@link IMetadataExporter} that occurs after {@link IMetadataExporter#setRaw(Object)} has
	 * been invoked, thus requiring the exporter to be reset in order to export a new document.
	 */
	NEEDS_RESET, 
	/**
	 * The state of an {@link IMetadataExporter} that occurs after {@link IMetadataExporter#begin()} has
	 * finished invocation, thus signaling that the exporter is in the proper state to export a document.
	 */
	READY_TO_EXPORT, 
	/**
	 * The state of an {@link IMetadataExporter} that occurs after {@link IMetadataExporter#export()} has
	 * been begun, but not yet finished, invocation.  The exporter is not in the proper state for fields to be
	 * retrieved.
	 */
	EXPORTING, 
	/**
	 * The state of an {@link IMetadataExporter} that occurs after {@link IMetadataExporter#export()} has
	 *  finished invocation, thus signaling that the exporter is in the proper state for fields to be
	 * retrieved.
	 */
	EXPORT_FINISHED 
}

⌨️ 快捷键说明

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