Record Class Term.LookAhead<S>
java.lang.Object
java.lang.Record
net.minecraft.util.parsing.packrat.Term.LookAhead<S>
- All Implemented Interfaces:
Term<S>
-
Nested Class Summary
Nested classes/interfaces inherited from interface Term
Term.Alternative<S>, Term.LookAhead<S>, Term.Marker<S,T>, Term.Maybe<S>, Term.Repeated<S, T>, Term.RepeatedWithSeparator<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> state, Scope scope, Control control) booleanpositive()Returns the value of thepositiverecord component.term()Returns the value of thetermrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
term
-
positive
private final boolean positiveThe field for thepositiverecord component.
-
-
Constructor Details
-
LookAhead
-
-
Method Details
-
parse
-
toString
-
hashCode
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
term
-
positive
public boolean positive()Returns the value of thepositiverecord component.- Returns:
- the value of the
positiverecord component
-