Enum Class WindowInteractionState

java.lang.Object
java.lang.Enum<WindowInteractionState>
at.bestsolution.uia.WindowInteractionState
All Implemented Interfaces:
INativeEnum, Serializable, Comparable<WindowInteractionState>, Constable

public enum WindowInteractionState extends Enum<WindowInteractionState> implements INativeEnum
Contains values that specify the current state of the window for purposes of user interaction.
  • Enum Constant Details

    • Running

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

      public static final WindowInteractionState Closing
      The window is closing.
    • ReadyForUserInteraction

      public static final WindowInteractionState ReadyForUserInteraction
      The window is ready for user interaction.
    • BlockedByModalWindow

      public static final WindowInteractionState BlockedByModalWindow
      The window is blocked by a modal window.
    • NotResponding

      public static final WindowInteractionState NotResponding
      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
    • getNativeValue

      public int getNativeValue()
      Specified by:
      getNativeValue in interface INativeEnum
    • getConstantName

      public String getConstantName()
      Specified by:
      getConstantName in interface INativeEnum
    • fromNativeValue

      public static Optional<WindowInteractionState> fromNativeValue(int nativeValue)