Enum UIObjectType
- java.lang.Object
-
- java.lang.Enum<UIObjectType>
-
- org.uitnet.testing.smartfwk.ui.core.commons.UIObjectType
-
- All Implemented Interfaces:
Serializable,Comparable<UIObjectType>
public enum UIObjectType extends Enum<UIObjectType>
- Author:
- Madhav Krishna
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UIObjectTypevalueOf(String name)Returns the enum constant of this type with the specified name.static UIObjectType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
accordion
public static final UIObjectType accordion
-
button
public static final UIObjectType button
-
checkBox
public static final UIObjectType checkBox
-
checkBoxGroup
public static final UIObjectType checkBoxGroup
-
comboBox
public static final UIObjectType comboBox
-
listBox
public static final UIObjectType listBox
-
choices
public static final UIObjectType choices
-
dateItem
public static final UIObjectType dateItem
-
dateTimeItem
public static final UIObjectType dateTimeItem
-
timeItem
public static final UIObjectType timeItem
-
horizontalScrollBar
public static final UIObjectType horizontalScrollBar
-
hyperlink
public static final UIObjectType hyperlink
-
image
public static final UIObjectType image
-
label
public static final UIObjectType label
-
table
public static final UIObjectType table
-
locator
public static final UIObjectType locator
-
menuItem
public static final UIObjectType menuItem
-
radioButton
public static final UIObjectType radioButton
-
radioButtonGroup
public static final UIObjectType radioButtonGroup
-
section
public static final UIObjectType section
-
tabSheet
public static final UIObjectType tabSheet
-
tab
public static final UIObjectType tab
-
textArea
public static final UIObjectType textArea
-
textBox
public static final UIObjectType textBox
-
textBoxWithSearchIcon
public static final UIObjectType textBoxWithSearchIcon
-
toolStrip
public static final UIObjectType toolStrip
-
verticalScrollBar
public static final UIObjectType verticalScrollBar
-
webPageTitle
public static final UIObjectType webPageTitle
-
webPage
public static final UIObjectType webPage
-
webURL
public static final UIObjectType webURL
-
leftSideImageOfRectangle
public static final UIObjectType leftSideImageOfRectangle
-
rightSideImageOfRectangle
public static final UIObjectType rightSideImageOfRectangle
-
headerColumn
public static final UIObjectType headerColumn
-
projectSpecific
public static final UIObjectType projectSpecific
-
-
Method Detail
-
values
public static UIObjectType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UIObjectType c : UIObjectType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UIObjectType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-