public enum STStrokeLineStyle extends Enum<STStrokeLineStyle>
Java class for ST_StrokeLineStyle.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_StrokeLineStyle">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="single"/>
<enumeration value="thinThin"/>
<enumeration value="thinThick"/>
<enumeration value="thickThin"/>
<enumeration value="thickBetweenThin"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
SINGLE
Single Line
|
THICK_BETWEEN_THIN
Thck Line Between Thin Lines
|
THICK_THIN
Thick Line Outside Thin Line
|
THIN_THICK
Thin Line Outside Thick Line
|
THIN_THIN
Two Thin Lines
|
| Modifier and Type | Method and Description |
|---|---|
static STStrokeLineStyle |
fromValue(String v) |
String |
value() |
static STStrokeLineStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STStrokeLineStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STStrokeLineStyle SINGLE
public static final STStrokeLineStyle THIN_THIN
public static final STStrokeLineStyle THIN_THICK
public static final STStrokeLineStyle THICK_THIN
public static final STStrokeLineStyle THICK_BETWEEN_THIN
public static STStrokeLineStyle[] values()
for (STStrokeLineStyle c : STStrokeLineStyle.values()) System.out.println(c);
public static STStrokeLineStyle 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 STStrokeLineStyle fromValue(String v)
Copyright © 2007-2022. All Rights Reserved.