public enum STBorderStyle extends Enum<STBorderStyle>
Java class for ST_BorderStyle.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_BorderStyle">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="none"/>
<enumeration value="thin"/>
<enumeration value="medium"/>
<enumeration value="dashed"/>
<enumeration value="dotted"/>
<enumeration value="thick"/>
<enumeration value="double"/>
<enumeration value="hair"/>
<enumeration value="mediumDashed"/>
<enumeration value="dashDot"/>
<enumeration value="mediumDashDot"/>
<enumeration value="dashDotDot"/>
<enumeration value="mediumDashDotDot"/>
<enumeration value="slantDashDot"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DASH_DOT |
DASH_DOT_DOT |
DASHED |
DOTTED |
DOUBLE |
HAIR |
MEDIUM |
MEDIUM_DASH_DOT |
MEDIUM_DASH_DOT_DOT |
MEDIUM_DASHED |
NONE |
SLANT_DASH_DOT |
THICK |
THIN |
| Modifier and Type | Method and Description |
|---|---|
static STBorderStyle |
fromValue(String v) |
String |
value() |
static STBorderStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STBorderStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STBorderStyle NONE
public static final STBorderStyle THIN
public static final STBorderStyle MEDIUM
public static final STBorderStyle DASHED
public static final STBorderStyle DOTTED
public static final STBorderStyle THICK
public static final STBorderStyle DOUBLE
public static final STBorderStyle HAIR
public static final STBorderStyle MEDIUM_DASHED
public static final STBorderStyle DASH_DOT
public static final STBorderStyle MEDIUM_DASH_DOT
public static final STBorderStyle DASH_DOT_DOT
public static final STBorderStyle MEDIUM_DASH_DOT_DOT
public static final STBorderStyle SLANT_DASH_DOT
public static STBorderStyle[] values()
for (STBorderStyle c : STBorderStyle.values()) System.out.println(c);
public static STBorderStyle 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 STBorderStyle fromValue(String v)
Copyright © 2007-2021. All Rights Reserved.