Enum Class WindowInteractionState

java.lang.Object
java.lang.Enum<WindowInteractionState>
com.hp.lft.sdk.uiapro.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.
  • Enum Constant Details

    • Running

      public static final WindowInteractionState Running
      Indicates that the window is running. This does not guarantee that the window is responding or ready for user interaction.
    • Closing

      public static final WindowInteractionState Closing
      Indicates that the window is closing.
    • ReadyForUserInteraction

      public static final WindowInteractionState ReadyForUserInteraction
      Indicates that the window is ready for user interaction.
    • BlockedByModalWindow

      public static final WindowInteractionState BlockedByModalWindow
      Indicates that the window is blocked by a modal window.
    • NotResponding

      public static final WindowInteractionState NotResponding
      Indicates that the window is not responding.
  • Method Details

    • values

      public static WindowInteractionState[] values()
      Returns 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
    • valueOf

      public static WindowInteractionState valueOf(String name)
      Returns 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
    • getValue

      public String getValue()
      Returns the String value representing the WindowInteractionState value.
      Specified by:
      getValue in interface com.hp.lft.sdk.internal.EnumValueProvider<String>
      Returns:
      the String value representing the WindowInteractionState value.