Enum MouseEventDetails.MouseButton
- java.lang.Object
-
- java.lang.Enum<MouseEventDetails.MouseButton>
-
- com.vaadin.flow.component.map.events.MouseEventDetails.MouseButton
-
- All Implemented Interfaces:
Serializable
,Comparable<MouseEventDetails.MouseButton>
- Enclosing class:
- MouseEventDetails
public static enum MouseEventDetails.MouseButton extends Enum<MouseEventDetails.MouseButton>
Constants for mouse buttons.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
Returns a human readable text representing the buttonstatic MouseEventDetails.MouseButton
of(int 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:
- name
-
of
public static MouseEventDetails.MouseButton of(int button)
-
-