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

📄 identifier.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/*$************************************************************************************************ ** ** $Id: Identifier.java,v 1.1 2004/05/06 15:51:50 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/referencing/Identifier.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.referencing;// J2SE direct dependenciesimport java.util.Locale;// OpenGIS direct dependenciesimport org.opengis.metadata.citation.Citation;/** * An identification of a CRS object. The first use of an <code>Identifier</code> for an object, * if any, is normally the primary identification code, and any others are aliases. * * @UML datatype RS_Identifier * @author ISO 19111 * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> * @version <A HREF="http://www.opengis.org/docs/03-073r1.zip">Abstract specification 2.0</A> */public interface Identifier {    /**     * Identifier code or name, optionally from a controlled list or pattern     * defined by a {@linkplain #getCodeSpace code space}.     *     * @return The code.     * @UML mandatory code     */    String getCode();    /**     * Identifier of a code space within which one or more codes are defined. This code space     * is optional but is normally included. This code space is often defined by some authority     * organization, where one organization may define multiple code spaces. The range and format     * of each Code Space identifier is defined by that code space authority.     *     * @return The code space, or <code>null</code> if not available.     * @UML optional codeSpace     */    String getCodeSpace();    /**     * Identifier of the version of the associated code space or code, as specified     * by the code space or code authority. This version is included only when the     * {@linkplain #getCode code} or {@linkplain #getCodeSpace code space} uses versions.     * When appropriate, the edition is identified by the effective date, coded using     * ISO 8601 date format.     *     * @return The version, or <code>null</code> if not available.     * @UML optional version     */    String getVersion();    /**     * Organization or party responsible for definition and maintenance of the     * {@linkplain #getCodeSpace code space} or {@linkplain #getCode code}.     *     * @return The authority, or <code>null</code> if not available.     * @UML optional authority     */    Citation getAuthority();    /**     * Comments on or information about this identifier. In the first use of an     * <code>Identifier</code> for an {@link Info} object, these remarks are information about this     * object, including data source information. Additional uses of a <code>Identifier</code>     * for an object, if any, are aliases, and the remarks are then about that alias.     *     * @param  locale The desired locale for the remarks to be returned,     *         or <code>null</code> for a non-localized string (or a default locale).     * @return The remarks, or <code>null</code> if not available.     * @UML optional remarks     */    String getRemarks(Locale locale);}

⌨️ 快捷键说明

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