Record Class KeyEvent
java.lang.Object
java.lang.Record
net.minecraft.client.input.KeyEvent
- All Implemented Interfaces:
InputWithModifiers
public record KeyEvent(int key, int scancode, int modifiers)
extends Record
implements InputWithModifiers
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface InputWithModifiers
InputWithModifiers.Modifiers -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final intThe field for thekeyrecord component.private final intThe field for themodifiersrecord component.private final intThe field for thescancoderecord component.Fields inherited from interface InputWithModifiers
NOT_DIGIT -
Constructor Summary
ConstructorsConstructorDescriptionKeyEvent(int key, int scancode, int modifiers) Creates an instance of aKeyEventrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intinput()intkey()Returns the value of thekeyrecord component.intReturns the value of themodifiersrecord component.intscancode()Returns the value of thescancoderecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from interface InputWithModifiers
getDigit, hasAltDown, hasControlDown, hasControlDownWithQuirk, hasShiftDown, isConfirmation, isCopy, isCut, isCycleFocus, isDown, isEscape, isLeft, isPaste, isRight, isSelectAll, isSelection, isUp
-
Field Details
-
key
private final int keyThe field for thekeyrecord component. -
scancode
private final int scancodeThe field for thescancoderecord component. -
modifiers
private final int modifiersThe field for themodifiersrecord component.
-
-
Constructor Details
-
KeyEvent
public KeyEvent(int key, int scancode, int modifiers) Creates an instance of aKeyEventrecord class.- Parameters:
key- the value for thekeyrecord componentscancode- the value for thescancoderecord componentmodifiers- the value for themodifiersrecord component
-
-
Method Details
-
input
public int input()- Specified by:
inputin interfaceInputWithModifiers
-
toString
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
key
public int key()Returns the value of thekeyrecord component.- Returns:
- the value of the
keyrecord component
-
scancode
public int scancode()Returns the value of thescancoderecord component.- Returns:
- the value of the
scancoderecord component
-
modifiers
public int modifiers()Returns the value of themodifiersrecord component.- Specified by:
modifiersin interfaceInputWithModifiers- Returns:
- the value of the
modifiersrecord component
-