java.lang.Object
java.lang.Record
org.kink_lang.kink.internal.program.lex.MarkToken
- Record Components:
mark- the mark.startPos- the start pos.endPos- the end pos.isAfterWhitespace- whether the mark is placed after whitespace.
- All Implemented Interfaces:
Token
public record MarkToken(String mark, int startPos, int endPos, boolean isAfterWhitespace)
extends Record
implements Token
A mark 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.booleanReturns the value of theisAfterWhitespacerecord component.mark()Returns the value of themarkrecord component.intstartPos()Returns the value of thestartPosrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
MarkToken
Creates an instance of aMarkTokenrecord class.- Parameters:
mark- the value for themarkrecord componentstartPos- the value for thestartPosrecord componentendPos- the value for theendPosrecord componentisAfterWhitespace- the value for theisAfterWhitespacerecord component
-
-
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 '=='. -
mark
Returns the value of themarkrecord component.- Returns:
- the value of the
markrecord component
-
startPos
public int startPos()Returns the value of thestartPosrecord component. -
endPos
public int endPos()Returns the value of theendPosrecord component. -
isAfterWhitespace
public boolean isAfterWhitespace()Returns the value of theisAfterWhitespacerecord component.- Returns:
- the value of the
isAfterWhitespacerecord component
-