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
-
Method Summary
Modifier and TypeMethodDescriptionint
endPos()
Returns the value of theendPos
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
Returns the value of theisAfterWhitespace
record component.mark()
Returns the value of themark
record component.int
startPos()
Returns the value of thestartPos
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
MarkToken
Creates an instance of aMarkToken
record class.- Parameters:
mark
- the value for themark
record componentstartPos
- the value for thestartPos
record componentendPos
- the value for theendPos
record componentisAfterWhitespace
- the value for theisAfterWhitespace
record 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 themark
record component.- Returns:
- the value of the
mark
record component
-
startPos
public int startPos()Returns the value of thestartPos
record component. -
endPos
public int endPos()Returns the value of theendPos
record component. -
isAfterWhitespace
public boolean isAfterWhitespace()Returns the value of theisAfterWhitespace
record component.- Returns:
- the value of the
isAfterWhitespace
record component
-