public enum STStrokeArrowType extends Enum<STStrokeArrowType>
Java class for ST_StrokeArrowType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_StrokeArrowType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="none"/>
<enumeration value="block"/>
<enumeration value="classic"/>
<enumeration value="oval"/>
<enumeration value="diamond"/>
<enumeration value="open"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BLOCK
Block Arrowhead
|
CLASSIC
Classic Arrowhead
|
DIAMOND
Diamond Arrowhead
|
NONE
No Arrowhead
|
OPEN
Open Arrowhead
|
OVAL
Oval Arrowhead
|
| Modifier and Type | Method and Description |
|---|---|
static STStrokeArrowType |
fromValue(String v) |
String |
value() |
static STStrokeArrowType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STStrokeArrowType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STStrokeArrowType NONE
public static final STStrokeArrowType BLOCK
public static final STStrokeArrowType CLASSIC
public static final STStrokeArrowType OVAL
public static final STStrokeArrowType DIAMOND
public static final STStrokeArrowType OPEN
public static STStrokeArrowType[] values()
for (STStrokeArrowType c : STStrokeArrowType.values()) System.out.println(c);
public static STStrokeArrowType 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 STStrokeArrowType fromValue(String v)
Copyright © 2007-2021. All Rights Reserved.