Package com.vaadin.testbench.unit
Enum Class MouseButton
- All Implemented Interfaces:
Serializable
,Comparable<MouseButton>
,Constable
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
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
Get value associated with the button by default.static MouseButton
Returns the enum constant of this class with the specified name.static MouseButton[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NO_BUTTON
-
LEFT
-
MIDDLE
-
RIGHT
-
BACK
-
FORWARD
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
getButton
public int getButton()Get value associated with the button by default.- Returns:
- button value
-