Enum TourActionType
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<TourActionType>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionInteraction is allowed with the target but the user must click the next button to complete the stepThe target FormItem must change to complete the step.Thetarget
must be clicked to complete the stepThe target must be double-clicked to complete the stepThe target must be dragged to complete step.The target locator should resolve to an item within a Menu that has a sub-menu.The target locator should resolve to an item within a Menu.The target will complete the step on mouseDownThe target must be moused-over to complete the stepNo interaction is allowed with the target and the user must click the next button to complete the stepThe target must be right-clicked to complete the step -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static TourActionType
Returns the enum constant of this type with the specified name.static TourActionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CLICK
Thetarget
must be clicked to complete the stepIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "click". -
MOUSEDOWN
The target will complete the step on mouseDownIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "mouseDown". -
DOUBLECLICK
The target must be double-clicked to complete the stepIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "doubleClick". -
RIGHTCLICK
The target must be right-clicked to complete the stepIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "rightClick". -
MOUSEOVER
The target must be moused-over to complete the stepIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "mouseOver". -
DRAG
The target must be dragged to complete step. IfdropTarget
is also specified, the target component must be dropped onto thedropTarget
.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "drag". -
CHANGE
The target FormItem must change to complete the step. SpecifyexpectedValue
if a specific value must be entered to continue. Depending on the FormItem type this may occur by the user typing or by selecting a value. SeeTourStep.inputValidation
for how validation is performed. Note: for composite formItems such asDateItem
orRadioGroupItem
, you may specify either the item as a whole or a sub item as the target. Either way the tour will look for the expected value on the composite (parent) item.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "change". -
MENUITEMOVER
The target locator should resolve to an item within a Menu that has a sub-menu. The submenu must be opened (by rolling over, or clicking the target) to complete the step.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "menuItemOver". -
MENUITEMSELECT
The target locator should resolve to an item within a Menu. The item must be selected (clicked) to complete the step.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "menuItemSelect". -
NONE
No interaction is allowed with the target and the user must click the next button to complete the stepIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "none". -
ANY
Interaction is allowed with the target but the user must click the next button to complete the stepIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "any".
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getValue
-