com.vaadin.shared.
Enum MouseEventDetails.MouseButton
- java.lang.Object
-
- java.lang.Enum<MouseEventDetails.MouseButton>
-
- com.vaadin.shared.MouseEventDetails.MouseButton
-
All Implemented Interfaces:
Enclosing class:
public static enum MouseEventDetails.MouseButton extends Enum<MouseEventDetails.MouseButton>
Constants for mouse buttons.
Since:
7.0
Version:
Author:
Vaadin Ltd
-
-
Method Summary
All Methods Modifier and Type Method Description String
getName()
Returns a human readable text representing the button
static MouseEventDetails.MouseButton
valueOf​(String name)
Returns the enum constant of this type with the specified name.
static MouseEventDetails.MouseButton[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LEFT
public static final MouseEventDetails.MouseButton LEFT
-
RIGHT
public static final MouseEventDetails.MouseButton RIGHT
-
MIDDLE
public static final MouseEventDetails.MouseButton MIDDLE
-
-
Method Detail
-
values
public static MouseEventDetails.MouseButton[] 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 (MouseEventDetails.MouseButton c : MouseEventDetails.MouseButton.values()) System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MouseEventDetails.MouseButton 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 nameNullPointerException
- if the argument is null
-
getName
public String getName()
Returns a human readable text representing the button
Returns:
-
-