Record Class PlayerInput

java.lang.Object
java.lang.Record
net.minecraft.util.PlayerInput
Record Components:
forward -
backward -
left -
right -
jump -
sneak -
sprint -

public record PlayerInput(boolean forward, boolean backward, boolean left, boolean right, boolean jump, boolean sneak, boolean sprint) extends Record
Mappings:
Namespace Name
named net/minecraft/util/PlayerInput
intermediary net/minecraft/class_10185
official cow
named forward
intermediary comp_3159
official c
named backward
intermediary comp_3160
official d
named left
intermediary comp_3161
official e
named right
intermediary comp_3162
official f
named jump
intermediary comp_3163
official g
named sneak
intermediary comp_3164
official h
named sprint
intermediary comp_3165
official i
  • Field Summary Link icon

    Fields
    Modifier and Type
    Field
    Description
    private final boolean
    The field for the backward record component.
    private static final byte
     
     
    private final boolean
    The field for the forward record component.
    private static final byte
     
    private final boolean
    The field for the jump record component.
    private static final byte
     
    private final boolean
    The field for the left record component.
    private static final byte
     
     
    private final boolean
    The field for the right record component.
    private static final byte
     
    private final boolean
    The field for the sneak record component.
    private static final byte
     
    private final boolean
    The field for the sprint record component.
    private static final byte
     
  • Constructor Summary Link icon

    Constructors
    Constructor
    Description
    PlayerInput(boolean bool, boolean bool2, boolean bool3, boolean bool4, boolean bool5, boolean bool6, boolean bool7)
     
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    boolean
    Returns the value of the backward record component.
    final boolean
    equals(Object object)
    Indicates whether some other object is "equal to" this one.
    boolean
    Returns the value of the forward record component.
    final int
    Returns a hash code value for this object.
    boolean
    Returns the value of the jump record component.
    boolean
    Returns the value of the left record component.
    boolean
    Returns the value of the right record component.
    boolean
    Returns the value of the sneak record component.
    boolean
    Returns the value of the sprint record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object Link icon

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details Link icon

    • forward Link icon

      private final boolean forward
      The field for the forward record component.
    • backward Link icon

      private final boolean backward
      The field for the backward record component.
    • left Link icon

      private final boolean left
      The field for the left record component.
    • jump Link icon

      private final boolean jump
      The field for the jump record component.
    • sneak Link icon

      private final boolean sneak
      The field for the sneak record component.
    • sprint Link icon

      private final boolean sprint
      The field for the sprint record component.
    • FORWARD Link icon

      private static final byte FORWARD
      See Also:
      Mappings:
      Namespace Name Mixin selector
      named FORWARD Lnet/minecraft/util/PlayerInput;FORWARD:B
      intermediary field_54099 Lnet/minecraft/class_10185;field_54099:B
      official j Lcow;j:B
    • BACKWARD Link icon

      private static final byte BACKWARD
      See Also:
      Mappings:
      Namespace Name Mixin selector
      named BACKWARD Lnet/minecraft/util/PlayerInput;BACKWARD:B
      intermediary field_54100 Lnet/minecraft/class_10185;field_54100:B
      official k Lcow;k:B
    • LEFT Link icon

      private static final byte LEFT
      See Also:
      Mappings:
      Namespace Name Mixin selector
      named LEFT Lnet/minecraft/util/PlayerInput;LEFT:B
      intermediary field_54101 Lnet/minecraft/class_10185;field_54101:B
      official l Lcow;l:B
    • JUMP Link icon

      private static final byte JUMP
      See Also:
      Mappings:
      Namespace Name Mixin selector
      named JUMP Lnet/minecraft/util/PlayerInput;JUMP:B
      intermediary field_54103 Lnet/minecraft/class_10185;field_54103:B
      official n Lcow;n:B
    • SNEAK Link icon

      private static final byte SNEAK
      See Also:
      Mappings:
      Namespace Name Mixin selector
      named SNEAK Lnet/minecraft/util/PlayerInput;SNEAK:B
      intermediary field_54104 Lnet/minecraft/class_10185;field_54104:B
      official o Lcow;o:B
    • SPRINT Link icon

      private static final byte SPRINT
      See Also:
      Mappings:
      Namespace Name Mixin selector
      named SPRINT Lnet/minecraft/util/PlayerInput;SPRINT:B
      intermediary field_54105 Lnet/minecraft/class_10185;field_54105:B
      official p Lcow;p:B
    • PACKET_CODEC Link icon

      public static final PacketCodec<PacketByteBuf,PlayerInput> PACKET_CODEC
      Mappings:
      Namespace Name Mixin selector
      named PACKET_CODEC Lnet/minecraft/util/PlayerInput;PACKET_CODEC:Lnet/minecraft/network/codec/PacketCodec;
      intermediary field_54097 Lnet/minecraft/class_10185;field_54097:Lnet/minecraft/class_9139;
      official a Lcow;a:Lyn;
    • DEFAULT Link icon

      public static PlayerInput DEFAULT
      Mappings:
      Namespace Name Mixin selector
      named DEFAULT Lnet/minecraft/util/PlayerInput;DEFAULT:Lnet/minecraft/util/PlayerInput;
      intermediary field_54098 Lnet/minecraft/class_10185;field_54098:Lnet/minecraft/class_10185;
      official b Lcow;b:Lcow;
  • Constructor Details Link icon

    • PlayerInput Link icon

      public PlayerInput(boolean bool, boolean bool2, boolean bool3, boolean bool4, boolean bool5, boolean bool6, boolean bool7)
  • Method Details Link icon

    • toString Link icon

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode Link icon

      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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals Link icon

      public final boolean equals(Object object)
      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 '=='.
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • forward Link icon

      public boolean forward()
      Returns the value of the forward record component.
      Returns:
      the value of the forward record component
    • backward Link icon

      public boolean backward()
      Returns the value of the backward record component.
      Returns:
      the value of the backward record component
    • left Link icon

      public boolean left()
      Returns the value of the left record component.
      Returns:
      the value of the left record component
    • right Link icon

      public boolean right()
      Returns the value of the right record component.
      Returns:
      the value of the right record component
    • jump Link icon

      public boolean jump()
      Returns the value of the jump record component.
      Returns:
      the value of the jump record component
    • sneak Link icon

      public boolean sneak()
      Returns the value of the sneak record component.
      Returns:
      the value of the sneak record component
    • sprint Link icon

      public boolean sprint()
      Returns the value of the sprint record component.
      Returns:
      the value of the sprint record component