Record Class SourceCodeAnalysis.Highlight
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
ConstructorsConstructorDescriptionHighlight(int start, int end, Set<SourceCodeAnalysis.Attribute> attributes) Creates an instance of aHighlightrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theattributesrecord component.intend()Returns the value of theendrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intstart()Returns the value of thestartrecord component.final StringtoString()Returns a string representation of this record class.Methods declared in class Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
Highlight
Creates an instance of aHighlightrecord class.- Parameters:
start- the value for thestartrecord componentend- the value for theendrecord componentattributes- the value for theattributesrecord component
-
-
Method Details
-
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. -
start
-
end
-
attributes
Returns the value of theattributesrecord component.- Returns:
- the value of the
attributesrecord component
-