Enum Class MouseButton

java.lang.Object
java.lang.Enum<MouseButton>
com.vaadin.testbench.unit.MouseButton
All Implemented Interfaces:
Serializable, Comparable<MouseButton>, Constable

public enum MouseButton extends Enum<MouseButton>
Enums for mouse button values in click events.

Default button values are as follows:

-1: No button
0: The primary button, typically the left mouse button
1: The middle button,
2: The secondary button, typically the right mouse button
3: The first additional button, typically the back button
4: The second additional button, typically the forward button
5+: More additional buttons without any typical meanings
  • Enum Constant Details

  • Method Details

    • values

      public static MouseButton[] 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 MouseButton 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
    • getButton

      public int getButton()
      Get value associated with the button by default.
      Returns:
      button value