Record Class Term.Maybe<S>
java.lang.Object
java.lang.Record
net.minecraft.util.parsing.packrat.Term.Maybe<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
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanparse(ParseState<S> p_335415_, Scope p_335550_, Control p_336000_) term()Returns the value of thetermrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
term
The field for thetermrecord component.
-
-
Constructor Details
-
Maybe
Creates an instance of aMayberecord class.- Parameters:
term- the value for thetermrecord 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). -
term
Returns the value of thetermrecord component.- Returns:
- the value of the
termrecord component
-