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

📄 boundary.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/*$************************************************************************************************ ** ** $Id: Boundary.java,v 1.5 2004/03/09 20:02:54 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/spatialschema/geometry/Boundary.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.spatialschema.geometry;// OpenGIS direct dependenciesimport org.opengis.spatialschema.geometry.complex.Complex;/** * The abstract root data type for all the data types used to represent the boundary of geometric * objects. Any subclass of {@link Geometry} will use a subclass of <code>Boundary</code> to * represent its boundary through the operation {@link Geometry#getBoundary}. By the nature of * geometry, boundary objects are cycles. * * @UML type GM_Boundary * @author ISO/DIS 19107 * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> * @version 2.0 */public interface Boundary extends Complex {    /**     * Always returns <code>true</code> since boundary objects are cycles.     *     * @return Always <code>true</code>.     */    public boolean isCycle();}

⌨️ 快捷键说明

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