public enum STCellType extends Enum<STCellType>
Java class for ST_CellType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_CellType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="b"/>
<enumeration value="n"/>
<enumeration value="e"/>
<enumeration value="s"/>
<enumeration value="str"/>
<enumeration value="inlineStr"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static STCellType |
fromValue(String v) |
String |
value() |
static STCellType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STCellType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STCellType B
public static final STCellType N
public static final STCellType E
public static final STCellType S
public static final STCellType STR
public static final STCellType INLINE_STR
public static STCellType[] values()
for (STCellType c : STCellType.values()) System.out.println(c);
public static STCellType 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 STCellType fromValue(String v)
Copyright © 2007-2021. All Rights Reserved.