java.lang.Object
java.lang.Record
org.kink_lang.kink.internal.program.lex.VerbToken
- Record Components:
verb- the verb.startPos- the start pos.endPos- the end pos.
- All Implemented Interfaces:
Token
A verb token.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintendPos()Returns the value of theendPosrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intstartPos()Returns the value of thestartPosrecord component.final StringtoString()Returns a string representation of this record class.verb()Returns the value of theverbrecord component.
-
Constructor Details
-
Method Details
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
verb
Returns the value of theverbrecord component.- Returns:
- the value of the
verbrecord component
-
startPos
public int startPos()Returns the value of thestartPosrecord component. -
endPos
public int endPos()Returns the value of theendPosrecord component.
-