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