java.lang.Object
java.lang.Record
jdk.jshell.SourceCodeAnalysis.Highlight
- Record Components:
start
- the starting position of the spanend
- the ending position of the spanattributes
- the attributes assigned to the span
- Enclosing class:
SourceCodeAnalysis
public static record SourceCodeAnalysis.Highlight(int start, int end, Set<SourceCodeAnalysis.Attribute> attributes)
extends Record
Assigns attributes usable for coloring to spans inside a snippet.
- Since:
- 19
-
Constructor Summary
ConstructorDescriptionHighlight
(int start, int end, Set<SourceCodeAnalysis.Attribute> attributes) Creates an instance of aHighlight
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theattributes
record component.int
end()
Returns the value of theend
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.int
start()
Returns the value of thestart
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Highlight
Creates an instance of aHighlight
record class.- Parameters:
start
- the value for thestart
record componentend
- the value for theend
record componentattributes
- the value for theattributes
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 '=='. -
start
public int start()Returns the value of thestart
record component.- Returns:
- the value of the
start
record component
-
end
public int end()Returns the value of theend
record component.- Returns:
- the value of the
end
record component
-
attributes
Returns the value of theattributes
record component.- Returns:
- the value of the
attributes
record component
-