public enum STWrapText extends Enum<STWrapText>
Java class for ST_WrapText.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_WrapText">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="bothSides"/>
<enumeration value="left"/>
<enumeration value="right"/>
<enumeration value="largest"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BOTH_SIDES
Both Sides
|
LARGEST
Largest Side Only
|
LEFT
Left Side Only
|
RIGHT
Right Side Only
|
| Modifier and Type | Method and Description |
|---|---|
static STWrapText |
fromValue(String v) |
String |
value() |
static STWrapText |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STWrapText[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STWrapText BOTH_SIDES
public static final STWrapText LEFT
public static final STWrapText RIGHT
public static final STWrapText LARGEST
public static STWrapText[] values()
for (STWrapText c : STWrapText.values()) System.out.println(c);
public static STWrapText 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 STWrapText fromValue(String v)
Copyright © 2007-2021. All Rights Reserved.