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 cpu
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

    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

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

    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

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

    • forward

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

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

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

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

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

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

      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 Lcpu;j:B
    • BACKWARD

      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 Lcpu;k:B
    • LEFT

      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 Lcpu;l:B
    • JUMP

      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 Lcpu;n:B
    • SNEAK

      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 Lcpu;o:B
    • SPRINT

      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 Lcpu;p:B
    • PACKET_CODEC

      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 Lcpu;a:Lzt;
    • DEFAULT

      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 Lcpu;b:Lcpu;
  • Constructor Details

    • PlayerInput

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

    • toString

      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

      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

      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

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

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

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

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

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

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

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