public enum STLineEndType extends Enum<STLineEndType>
Java class for ST_LineEndType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_LineEndType">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="none"/>
<enumeration value="triangle"/>
<enumeration value="stealth"/>
<enumeration value="diamond"/>
<enumeration value="oval"/>
<enumeration value="arrow"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ARROW
Arrow Head
|
DIAMOND
Diamond
|
NONE
None
|
OVAL
Oval
|
STEALTH
Stealth Arrow
|
TRIANGLE
Triangle Arrow Head
|
| Modifier and Type | Method and Description |
|---|---|
static STLineEndType |
fromValue(String v) |
String |
value() |
static STLineEndType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STLineEndType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STLineEndType NONE
public static final STLineEndType TRIANGLE
public static final STLineEndType STEALTH
public static final STLineEndType DIAMOND
public static final STLineEndType OVAL
public static final STLineEndType ARROW
public static STLineEndType[] values()
for (STLineEndType c : STLineEndType.values()) System.out.println(c);
public static STLineEndType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static STLineEndType fromValue(String v)
Copyright © 2007-2021. All Rights Reserved.