Record Class MouseEvent
java.lang.Object
java.lang.Record
org.springframework.shell.component.view.event.MouseEvent
unused modifier button type
[ ] [ ] [ ] [ ]
31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
static class
static class
static class
-
Constructor Summary
ConstructorDescriptionMouseEvent
(int x, int y, int mouse) Creates an instance of aMouseEvent
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.boolean
has
(int mask) boolean
final int
hashCode()
Returns a hash code value for this object.boolean
boolean
hasType()
int
mouse()
Returns the value of themouse
record component.static MouseEvent
of
(int x, int y, int mouse) static MouseEvent
of
(org.jline.terminal.MouseEvent event) final String
toString()
Returns a string representation of this record class.int
x()
Returns the value of thex
record component.int
y()
Returns the value of they
record component.
-
Constructor Details
-
MouseEvent
public MouseEvent(int x, int y, int mouse) Creates an instance of aMouseEvent
record class.- Parameters:
x
- the value for thex
record componenty
- the value for they
record componentmouse
- the value for themouse
record component
-
-
Method Details
-
of
-
of
-
hasType
public boolean hasType() -
hasButton
public boolean hasButton() -
hasModifier
public boolean hasModifier() -
has
public boolean has(int mask) -
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with '=='. -
x
public int x()Returns the value of thex
record component.- Returns:
- the value of the
x
record component
-
y
public int y()Returns the value of they
record component.- Returns:
- the value of the
y
record component
-
mouse
public int mouse()Returns the value of themouse
record component.- Returns:
- the value of the
mouse
record component
-