public enum ComponentType extends java.lang.Enum<ComponentType> implements com.hp.lft.sdk.internal.EnumValueProvider<java.lang.Integer>
Enum Constant and Description |
---|
APPLICATION
Application type.
|
BOX
Box type.
|
BUTTON
Button type.
|
C_TEXT_FIELD
CTextField type.
|
CHECK_BOX
CheckBox type.
|
COLLECTION
Collection type.
|
COMBO_BOX
ComboBox type.
|
COMPONENT
Component type.
|
COMPONENT_COLLECTION
Component Collection type.
|
CONNECTION
Connection type.
|
CONTAINER
Container type.
|
CONTAINER_SHELL
Container Shell type.
|
CONTEXT_MENU
Context Menu type.
|
CTRL_APO_GRID
APOGrid control type.
|
CTRL_CALENDAR
Calendar control type.
|
CTRL_GRID_VIEW
Grid View control type.
|
CTRL_TEXT_AREA
Editor control type.
|
CTRL_TOOL_BAR
ToolBar control type.
|
CTRL_TREE
Tree control type.
|
CUSTOM_CONTROL
Custom Control type.
|
DIALOG_SHELL
Dialog Shell type.
|
DOCK_SHELL
Dock Shell type.
|
FALLBACK_COMPONENT
Fallback Component type.
|
FRAME_WINDOW
Frame Window type.
|
GOS_SHELL
GOS Shell type.
|
GRID_TOOL_BAR
Grid ToolBar type.
|
LABEL
Label type.
|
LIST_CONTAINER
List Container type.
|
MAIN_WINDOW
Main Window type.
|
MENU
Menu type.
|
MENUBAR
Menubar type.
|
MESSAGE_WINDOW
Message Window type.
|
MODAL_WINDOW
Modal Window type.
|
OK_CODE_FIELD
OKCode Field type.
|
PASSWORD_FIELD
Password Field type.
|
RADIO_BUTTON
Radio Button type.
|
SCROLL_CONTAINER
Scroll Container type.
|
SCROLLBAR
Scrollbar type.
|
SESSION
Session type.
|
SESSION_INFO
Session Info type.
|
SHELL
Shell type.
|
SIMPLE_CONTAINER
Simple Container type.
|
SPLITTER_SHELL
Splitter Shell type.
|
STATUS_PANE
Status Pane type.
|
STATUSBAR
Statusbar type.
|
TAB
Tab type.
|
TAB_STRIP
TabStrip type.
|
TABLE_COLUMN
TableColumn type.
|
TABLE_CONTROL
Table Control type.
|
TABLE_ROW
TableRow type.
|
TEXT_FIELD
Text Field type.
|
TITLEBAR
Titlebar type.
|
TOOL_BAR
ToolBar type.
|
UNKNOWN
Unknown type.
|
USER_AREA
User Area type.
|
V_COMPONENT
VComponent type.
|
V_CONTAINER
VContainer type.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Integer |
getValue()
Returns the integer value representing the ComponentType.
|
static ComponentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ComponentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentType UNKNOWN
public static final ComponentType COMPONENT
public static final ComponentType V_COMPONENT
public static final ComponentType V_CONTAINER
public static final ComponentType APPLICATION
public static final ComponentType CONNECTION
public static final ComponentType SESSION
public static final ComponentType FRAME_WINDOW
public static final ComponentType MAIN_WINDOW
public static final ComponentType MODAL_WINDOW
public static final ComponentType MESSAGE_WINDOW
public static final ComponentType LABEL
public static final ComponentType TEXT_FIELD
public static final ComponentType C_TEXT_FIELD
public static final ComponentType PASSWORD_FIELD
public static final ComponentType COMBO_BOX
public static final ComponentType OK_CODE_FIELD
public static final ComponentType BUTTON
public static final ComponentType RADIO_BUTTON
public static final ComponentType CHECK_BOX
public static final ComponentType STATUS_PANE
public static final ComponentType CUSTOM_CONTROL
public static final ComponentType CONTAINER_SHELL
public static final ComponentType BOX
public static final ComponentType CONTAINER
public static final ComponentType SIMPLE_CONTAINER
public static final ComponentType SCROLL_CONTAINER
public static final ComponentType LIST_CONTAINER
public static final ComponentType USER_AREA
public static final ComponentType TABLE_CONTROL
public static final ComponentType TABLE_COLUMN
public static final ComponentType TABLE_ROW
public static final ComponentType TAB_STRIP
public static final ComponentType TAB
public static final ComponentType SCROLLBAR
public static final ComponentType TOOL_BAR
public static final ComponentType TITLEBAR
public static final ComponentType STATUSBAR
public static final ComponentType MENU
public static final ComponentType MENUBAR
public static final ComponentType COLLECTION
public static final ComponentType SESSION_INFO
public static final ComponentType SHELL
public static final ComponentType GOS_SHELL
public static final ComponentType SPLITTER_SHELL
public static final ComponentType DIALOG_SHELL
public static final ComponentType DOCK_SHELL
public static final ComponentType CONTEXT_MENU
public static final ComponentType COMPONENT_COLLECTION
public static final ComponentType CTRL_TREE
public static final ComponentType CTRL_GRID_VIEW
public static final ComponentType CTRL_TOOL_BAR
public static final ComponentType CTRL_TEXT_AREA
public static final ComponentType GRID_TOOL_BAR
public static final ComponentType CTRL_CALENDAR
public static final ComponentType FALLBACK_COMPONENT
public static final ComponentType CTRL_APO_GRID
public static ComponentType[] values()
for (ComponentType c : ComponentType.values()) System.out.println(c);
public static ComponentType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.Integer getValue()
getValue
in interface com.hp.lft.sdk.internal.EnumValueProvider<java.lang.Integer>