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 ci
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 Link icon

    • forward Link icon

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

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

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

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

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

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

      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 Lci;a:Lcom/mojang/serialization/Codec;
  • Constructor Details Link icon

  • Method Details Link icon

    • matches Link icon

      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 Lci;a(Lcow;)Z
    • keyMatches Link icon

      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 Lci;a(Ljava/util/Optional;Z)Z
    • 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 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 Link icon

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

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

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

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

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

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

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