Record Class Term.Sequence<S>
java.lang.Object
java.lang.Record
net.minecraft.util.parsing.packrat.Term.Sequence<S>
- All Implemented Interfaces:
Term<S>
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.util.parsing.packrat.Term
Term.Alternative<S>, Term.Marker<S,
T>, Term.Maybe<S>, Term.Reference<S, T>, Term.Sequence<S> -
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionelements()
Returns the value of theelements
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.boolean
parse
(ParseState<S> p_330195_, Scope p_336361_, Control p_328798_) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
elements
The field for theelements
record component.
-
-
Constructor Details
-
Sequence
Creates an instance of aSequence
record class.- Parameters:
elements
- the value for theelements
record component
-
-
Method Details
-
parse
-
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)
. -
elements
Returns the value of theelements
record component.- Returns:
- the value of the
elements
record component
-