Record Class Input

java.lang.Object
java.lang.Record
net.minecraft.world.entity.player.Input

public record Input(boolean forward, boolean backward, boolean left, boolean right, boolean jump, boolean shift, boolean sprint) extends Record
  • Field Summary

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

    Constructors
    Constructor
    Description
    Input(boolean forward, boolean backward, boolean left, boolean right, boolean jump, boolean shift, boolean sprint)
    Creates an instance of a Input record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns the value of the backward record component.
    final boolean
    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 shift 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.
    • shift

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

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

      private static final byte FLAG_FORWARD
      See Also:
    • FLAG_BACKWARD

      private static final byte FLAG_BACKWARD
      See Also:
    • FLAG_LEFT

      private static final byte FLAG_LEFT
      See Also:
    • FLAG_RIGHT

      private static final byte FLAG_RIGHT
      See Also:
    • FLAG_JUMP

      private static final byte FLAG_JUMP
      See Also:
    • FLAG_SHIFT

      private static final byte FLAG_SHIFT
      See Also:
    • FLAG_SPRINT

      private static final byte FLAG_SPRINT
      See Also:
    • STREAM_CODEC

      public static final StreamCodec<FriendlyByteBuf,Input> STREAM_CODEC
    • EMPTY

      public static Input EMPTY
  • Constructor Details

    • Input

      public Input(boolean forward, boolean backward, boolean left, boolean right, boolean jump, boolean shift, boolean sprint)
      Creates an instance of a Input record class.
      Parameters:
      forward - the value for the forward record component
      backward - the value for the backward record component
      left - the value for the left record component
      right - the value for the right record component
      jump - the value for the jump record component
      shift - the value for the shift record component
      sprint - the value for the sprint record component
  • 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 o)
      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:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o 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
    • shift

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

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