public enum STTextStrikeType extends Enum<STTextStrikeType>
Java class for ST_TextStrikeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_TextStrikeType"> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="noStrike"/> <enumeration value="sngStrike"/> <enumeration value="dblStrike"/> </restriction> </simpleType>
Enum Constant and Description |
---|
DBL_STRIKE
Text Strike Enum ( Double Strike )
|
NO_STRIKE
Text Strike Enum ( No Strike )
|
SNG_STRIKE
Text Strike Enum ( Single Strike )
|
Modifier and Type | Method and Description |
---|---|
static STTextStrikeType |
fromValue(String v) |
String |
value() |
static STTextStrikeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STTextStrikeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STTextStrikeType NO_STRIKE
public static final STTextStrikeType SNG_STRIKE
public static final STTextStrikeType DBL_STRIKE
public static STTextStrikeType[] values()
for (STTextStrikeType c : STTextStrikeType.values()) System.out.println(c);
public static STTextStrikeType 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 STTextStrikeType fromValue(String v)
Copyright © 2007-2019. All Rights Reserved.