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
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.command.argument.packrat.ParsingRule
ParsingRule.RuleAction<S,
T>, ParsingRule.SimpleRule<S, T>, ParsingRule.StatelessAction<T> -
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionaction()
Returns the value of theaction
record component.child()
Returns the value of thechild
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.parse
(ParsingState<S> state) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
Constructor Details
-
SimpleRule
-
-
Method Details
-
parse
- Specified by:
parse
in interfaceParsingRule<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
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. -
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. -
equals
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 withObjects::equals(Object,Object)
. -
action
Returns the value of theaction
record component.- Returns:
- the value of the
action
record component
-
child
Returns the value of thechild
record component.- Returns:
- the value of the
child
record component
-