public enum TabSubType extends Enum<TabSubType>
Java class for tab.subType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="tab.subType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="default"/>
<enumeration value="meetingMinutesTab"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
DEFAULT |
MEETING_MINUTES_TAB |
| Modifier and Type | Method and Description |
|---|---|
static TabSubType |
fromValue(String v) |
String |
value() |
static TabSubType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TabSubType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TabSubType DEFAULT
public static final TabSubType MEETING_MINUTES_TAB
public static TabSubType[] values()
for (TabSubType c : TabSubType.values()) System.out.println(c);
public static TabSubType 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 TabSubType fromValue(String v)
Copyright © 2012–2014 RedSoft. All rights reserved.