Enum KeyboardUiKey

    • Enum Constant Detail

      • ACCEPT

        public static final KeyboardUiKey ACCEPT
        The Accept, Commit, or OK key or button.
      • AGAIN

        public static final KeyboardUiKey AGAIN
        The Again key. Redoes or repeats a previous action.
      • ATTENTION

        public static final KeyboardUiKey ATTENTION
        The Attn (Attention) key.
      • CANCEL

        public static final KeyboardUiKey CANCEL
        The Cancel key.
      • CONTEXT_MENU

        public static final KeyboardUiKey CONTEXT_MENU
        Shows the context menu. Typically found between theWindows (or OS) key and the Control key on the right side of the keyboard.
      • ESCAPE

        public static final KeyboardUiKey ESCAPE
        The Esc (Escape) key. Typically used as an exit, cancel, or"escape this operation" button. Historically, the Escape character was used to signal the start of a special control sequence of characters called an "escape sequence."
      • EXECUTE

        public static final KeyboardUiKey EXECUTE
        The Execute key.
      • FIND

        public static final KeyboardUiKey FIND
        The Find key. Opens an interface (typically a dialog box) for performing a find/search operation.
      • FINISH

        public static final KeyboardUiKey FINISH
        The Finish key.
      • HELP

        public static final KeyboardUiKey HELP
        The Help key. Opens or toggles the display of help information.
      • PAUSE

        public static final KeyboardUiKey PAUSE
        The Pause key. Pauses the current application or state, if applicable.
        Note: This shouldn't be confused with the "MediaPause" key value, which is used for media controllers, rather than to control applications and processes.
      • PLAY

        public static final KeyboardUiKey PLAY
        The Play key. Resumes a previously paused application, if applicable.
        Note: This shouldn't be confused with the"MediaPlay" key value, which is used for media controllers, rather than to control applications and processes.
      • PROPERTIES

        public static final KeyboardUiKey PROPERTIES
        The Props (Properties) key.
      • SELECT

        public static final KeyboardUiKey SELECT
        The Select key.
      • ZOOM_IN

        public static final KeyboardUiKey ZOOM_IN
        The ZoomIn key.
      • ZOOM_OUT

        public static final KeyboardUiKey ZOOM_OUT
        The ZoomOut key.
    • Method Detail

      • values

        public static KeyboardUiKey[] 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 (KeyboardUiKey c : KeyboardUiKey.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static KeyboardUiKey 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 name
        NullPointerException - if the argument is null
      • value

        public String value()
        Description copied from interface: Key
        Returns the name value of property
        Specified by:
        value in interface Key
        Returns:
        the name value of property