Record Class InputPredicate

java.lang.Object
java.lang.Record
net.minecraft.advancements.critereon.InputPredicate

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
  • 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
  • Constructor Details

    • InputPredicate

      public InputPredicate(Optional<Boolean> forward, Optional<Boolean> backward, Optional<Boolean> left, Optional<Boolean> right, Optional<Boolean> jump, Optional<Boolean> sneak, Optional<Boolean> sprint)
      Creates an instance of a InputPredicate 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
      sneak - the value for the sneak record component
      sprint - the value for the sprint record component
  • Method Details

    • matches

      public boolean matches(Input p_371459_)
    • matches

      private boolean matches(Optional<Boolean> p_371721_, boolean p_371618_)
    • 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 Objects::equals(Object,Object).
      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 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