boundary.java

来自「GEo 地理操作源代码」· Java 代码 · 共 35 行

JAVA
35
字号
/*$************************************************************************************************ ** ** $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 + =
减小字号Ctrl + -
显示快捷键?