public enum STStrokeJoinStyle extends Enum<STStrokeJoinStyle>
Java class for ST_StrokeJoinStyle.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_StrokeJoinStyle">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="round"/>
<enumeration value="bevel"/>
<enumeration value="miter"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BEVEL
Bevel Joint
|
MITER
Miter Joint
|
ROUND
Round Joint
|
| Modifier and Type | Method and Description |
|---|---|
static STStrokeJoinStyle |
fromValue(String v) |
String |
value() |
static STStrokeJoinStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STStrokeJoinStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STStrokeJoinStyle ROUND
public static final STStrokeJoinStyle BEVEL
public static final STStrokeJoinStyle MITER
public static STStrokeJoinStyle[] values()
for (STStrokeJoinStyle c : STStrokeJoinStyle.values()) System.out.println(c);
public static STStrokeJoinStyle 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 STStrokeJoinStyle fromValue(String v)
Copyright © 2007-2020. All Rights Reserved.