Package com.hp.lft.sdk.uiapro
Enum Class WindowInteractionState
- All Implemented Interfaces:
- com.hp.lft.sdk.internal.EnumValueProvider<String>,- Serializable,- Comparable<WindowInteractionState>,- java.lang.constant.Constable
public enum WindowInteractionState
extends Enum<WindowInteractionState>
implements com.hp.lft.sdk.internal.EnumValueProvider<String>
The possible interaction states of a window.
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionIndicates that the window is blocked by a modal window.Indicates that the window is closing.Indicates that the window is not responding.Indicates that the window is ready for user interaction.Indicates that the window is running.
- 
Method SummaryModifier and TypeMethodDescriptiongetValue()Returns the String value representing the WindowInteractionState value.static WindowInteractionStateReturns the enum constant of this class with the specified name.static WindowInteractionState[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
RunningIndicates that the window is running. This does not guarantee that the window is responding or ready for user interaction.
- 
ClosingIndicates that the window is closing.
- 
ReadyForUserInteractionIndicates that the window is ready for user interaction.
- 
BlockedByModalWindowIndicates that the window is blocked by a modal window.
- 
NotRespondingIndicates that the window is not responding.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
getValueReturns the String value representing the WindowInteractionState value.- Specified by:
- getValuein interface- com.hp.lft.sdk.internal.EnumValueProvider<String>
- Returns:
- the String value representing the WindowInteractionState value.
 
 
-