Record Class InputPredicate

java.lang.Object
java.lang.Record
net.minecraft.predicate.entity.InputPredicate
Record Components:
forward -
backward -
left -
right -
jump -
sneak -
sprint -

public record InputPredicate(Optional<Boolean> forward, Optional<Boolean> backward, Optional<Boolean> left, Optional<Boolean> right, Optional<Boolean> jump, Optional<Boolean> sneak, Optional<Boolean> sprint) extends Record
Mappings:
Namespace Name
named net/minecraft/predicate/entity/InputPredicate
intermediary net/minecraft/class_10184
official ch
named forward
intermediary comp_3152
official b
named backward
intermediary comp_3153
official c
named left
intermediary comp_3154
official d
named right
intermediary comp_3155
official e
named jump
intermediary comp_3156
official f
named sneak
intermediary comp_3157
official g
named sprint
intermediary comp_3158
official h
  • Field Details

    • forward

      private final Optional<Boolean> forward
      The field for the forward record component.
    • backward

      private final Optional<Boolean> backward
      The field for the backward record component.
    • left

      private final Optional<Boolean> left
      The field for the left record component.
    • jump

      private final Optional<Boolean> jump
      The field for the jump record component.
    • sneak

      private final Optional<Boolean> sneak
      The field for the sneak record component.
    • sprint

      private final Optional<Boolean> sprint
      The field for the sprint record component.
    • CODEC

      public static final com.mojang.serialization.Codec<InputPredicate> CODEC
      Mappings:
      Namespace Name Mixin selector
      named CODEC Lnet/minecraft/predicate/entity/InputPredicate;CODEC:Lcom/mojang/serialization/Codec;
      intermediary field_54096 Lnet/minecraft/class_10184;field_54096:Lcom/mojang/serialization/Codec;
      official a Lch;a:Lcom/mojang/serialization/Codec;
  • Constructor Details

  • Method Details

    • matches

      public boolean matches(PlayerInput playerInput)
      Mappings:
      Namespace Name Mixin selector
      named matches Lnet/minecraft/predicate/entity/InputPredicate;matches(Lnet/minecraft/util/PlayerInput;)Z
      intermediary method_63643 Lnet/minecraft/class_10184;method_63643(Lnet/minecraft/class_10185;)Z
      official a Lch;a(Lcpu;)Z
    • keyMatches

      private boolean keyMatches(Optional<Boolean> keyPressed, boolean inputPressed)
      Mappings:
      Namespace Name Mixin selector
      named keyMatches Lnet/minecraft/predicate/entity/InputPredicate;keyMatches(Ljava/util/Optional;Z)Z
      intermediary method_63645 Lnet/minecraft/class_10184;method_63645(Ljava/util/Optional;Z)Z
      official a Lch;a(Ljava/util/Optional;Z)Z
    • 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 Objects::equals(Object,Object).
      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 Optional<Boolean> forward()
      Returns the value of the forward record component.
      Returns:
      the value of the forward record component
    • backward

      public Optional<Boolean> backward()
      Returns the value of the backward record component.
      Returns:
      the value of the backward record component
    • left

      public Optional<Boolean> left()
      Returns the value of the left record component.
      Returns:
      the value of the left record component
    • right

      public Optional<Boolean> right()
      Returns the value of the right record component.
      Returns:
      the value of the right record component
    • jump

      public Optional<Boolean> jump()
      Returns the value of the jump record component.
      Returns:
      the value of the jump record component
    • sneak

      public Optional<Boolean> sneak()
      Returns the value of the sneak record component.
      Returns:
      the value of the sneak record component
    • sprint

      public Optional<Boolean> sprint()
      Returns the value of the sprint record component.
      Returns:
      the value of the sprint record component