Record Class ParsingRule.SimpleRule<S,T>

java.lang.Object
java.lang.Record
net.minecraft.command.argument.packrat.ParsingRule.SimpleRule<S,T>
Record Components:
action -
child -
All Implemented Interfaces:
ParsingRule<S,T>
Enclosing interface:
ParsingRule<S,T>

public static record ParsingRule.SimpleRule<S,T>(ParsingRule.RuleAction<S,T> action, Term<S> child) extends Record implements ParsingRule<S,T>
Mappings:
Namespace Name
named net/minecraft/command/argument/packrat/ParsingRule$SimpleRule
intermediary net/minecraft/class_9396$class_9399
official bmq$c
named action
intermediary comp_2476
official a
named child
intermediary comp_2477
official b
  • Field Details

  • Constructor Details

  • Method Details

    • parse

      public Optional<T> parse(ParsingState<S> state)
      Specified by:
      parse in interface ParsingRule<S,T>
      Mappings:
      Namespace Name Mixin selector
      named parse Lnet/minecraft/command/argument/packrat/ParsingRule;parse(Lnet/minecraft/command/argument/packrat/ParsingState;)Ljava/util/Optional;
      intermediary method_58318 Lnet/minecraft/class_9396;method_58318(Lnet/minecraft/class_9393;)Ljava/util/Optional;
      official a Lbmq;a(Lbmp;)Ljava/util/Optional;
    • 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.
    • action

      public ParsingRule.RuleAction<S,T> action()
      Returns the value of the action record component.
      Returns:
      the value of the action record component
    • child

      public Term<S> child()
      Returns the value of the child record component.
      Returns:
      the value of the child record component