public enum STTableType extends Enum<STTableType>
Java class for ST_TableType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_TableType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="worksheet"/>
<enumeration value="xml"/>
<enumeration value="queryTable"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
QUERY_TABLE |
WORKSHEET |
XML |
| Modifier and Type | Method and Description |
|---|---|
static STTableType |
fromValue(String v) |
String |
value() |
static STTableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STTableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STTableType WORKSHEET
public static final STTableType XML
public static final STTableType QUERY_TABLE
public static STTableType[] values()
for (STTableType c : STTableType.values()) System.out.println(c);
public static STTableType 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 STTableType fromValue(String v)
Copyright © 2007-2019. All Rights Reserved.