Package net.minecraft.client.input
Interface InputWithModifiers
- All Known Implementing Classes:
KeyEvent,MouseButtonEvent,MouseButtonInfo
public interface InputWithModifiers
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptiondefault intgetDigit()default booleandefault booleandefault booleanintinput()default booleandefault booleanisCopy()default booleanisCut()default booleandefault booleanisDown()default booleanisEscape()default booleanisLeft()default booleanisPaste()default booleanisRight()default booleandefault booleandefault booleanisUp()int
-
Field Details
-
NOT_DIGIT
static final int NOT_DIGIT- See Also:
-
-
Method Details
-
input
int input() -
modifiers
int modifiers() -
isSelection
default boolean isSelection() -
isConfirmation
default boolean isConfirmation() -
isEscape
default boolean isEscape() -
isLeft
default boolean isLeft() -
isRight
default boolean isRight() -
isUp
default boolean isUp() -
isDown
default boolean isDown() -
isCycleFocus
default boolean isCycleFocus() -
getDigit
default int getDigit() -
hasAltDown
default boolean hasAltDown() -
hasShiftDown
default boolean hasShiftDown() -
hasControlDown
default boolean hasControlDown() -
isSelectAll
default boolean isSelectAll() -
isCopy
default boolean isCopy() -
isPaste
default boolean isPaste() -
isCut
default boolean isCut()
-