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

📄 linecap.java

📁 GEo 地理操作源代码
💻 JAVA
字号:
/************************************************************************************************** ** ** $Id: LineCap.java,v 1.5 2004/05/06 22:05:52 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/go/display/style/LineCap.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.go.display.style;// J2SE direct dependenciesimport java.util.ArrayList;import java.util.List;import org.opengis.util.CodeList;import org.opengis.util.SimpleEnumerationType;/** * Instances of <code>LineCap</code> indicate the various * ways of capping the end of a styled line. This class defines static * constants for all of the standard choices. * * @author <A HREF="http://www.opengis.org">OpenGIS&reg; consortium</A> * @version $Revision: 1.5 $, $Date: 2004/05/06 22:05:52 $ */public class LineCap extends SimpleEnumerationType {    //*************************************************************************    //  Static Fields    //*************************************************************************    /**     * The list of enumeration available in this virtual machine.     * <strong>Must be declared first!</strong>.     */    private static final List VALUES = new ArrayList(3);    /**     * This constant indicates that line ends should be drawn with no extra     * decoration.     */    public static final LineCap BUTT = new LineCap("BUTT", "Draw line ends with no decoration.");    /**     * This constant indicates that line ends should be drawn with a half     * circle of diameter equal to the width of the line.     */    public static final LineCap ROUND = new LineCap("ROUND", "Draw line ends with half circles.");    /**     * This constant indicates that the line should be capped by a straight     * line extending half the line's width past the endpoint of the line.     */    public static final LineCap SQUARE =            new LineCap("SQUARE", "Draw line ends with a square cap.");    //*************************************************************************    //  Constructor    //*************************************************************************    /**     * Construct a new LineCap with the given name and description.     * This constructor should only be used to make the static     * constants in this class or by a provider subclasses to create     * implementation specific styles that can be accessed by     * <code>DisplayCapabilities.getSupportedLineCaps()</code>.     * @param name a String defining the name of the Arrow pattern.     * @param description a String describing the pattern.     */    protected LineCap(String name, String description) {        super(VALUES, name, description);    }    //*************************************************************************    //  Methods    //*************************************************************************    /**     * Returns the list of <code>LineCap</code>s.     */    public static LineCap[] values() {        synchronized (VALUES) {            return (LineCap[]) VALUES.toArray(new LineCap[VALUES.size()]);        }    }    /**     * Returns the list of enumerations of the same kind than this enum.     */    public CodeList[] family() {        return values();    }}

⌨️ 快捷键说明

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