public enum STStrokeArrowWidth extends Enum<STStrokeArrowWidth>
Java class for ST_StrokeArrowWidth.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_StrokeArrowWidth"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="narrow"/> <enumeration value="medium"/> <enumeration value="wide"/> </restriction> </simpleType>
Enum Constant and Description |
---|
MEDIUM
Medium Arrowhead
|
NARROW
Narrow Arrowhead
|
WIDE
Wide Arrowhead
|
Modifier and Type | Method and Description |
---|---|
static STStrokeArrowWidth |
fromValue(String v) |
String |
value() |
static STStrokeArrowWidth |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STStrokeArrowWidth[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STStrokeArrowWidth NARROW
public static final STStrokeArrowWidth MEDIUM
public static final STStrokeArrowWidth WIDE
public static STStrokeArrowWidth[] values()
for (STStrokeArrowWidth c : STStrokeArrowWidth.values()) System.out.println(c);
public static STStrokeArrowWidth 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 STStrokeArrowWidth fromValue(String v)
Copyright © 2007-2014. All Rights Reserved.