Record Class Hunk
java.lang.Object
java.lang.Record
org.variantsync.studies.evolution.simulation.diff.components.Hunk
- Record Components:
location
- The location of the hunk in the filecontent
- The content of the hunk (i.e., context and changed lines)
- All Implemented Interfaces:
IDiffComponent
public record Hunk(HunkLocation location, List<Line> content)
extends Record
implements IDiffComponent
A Hunk represents a changed text block in the difference between two versions of a file.
-
Constructor Summary
ConstructorsConstructorDescriptionHunk
(HunkLocation location, List<Line> content) Creates an instance of aHunk
record class. -
Method Summary
Modifier and TypeMethodDescriptioncontent()
Returns the value of thecontent
record component.boolean
Indicates whether some other object is "equal to" this one.int
hashCode()
Returns a hash code value for this object.location()
Returns the value of thelocation
record component.toLines()
Parse this component back into a list of lines that can be added to a diff file meant as input for unix patchtoString()
Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
toLines
Description copied from interface:IDiffComponent
Parse this component back into a list of lines that can be added to a diff file meant as input for unix patch- Specified by:
toLines
in interfaceIDiffComponent
- Returns:
- the lines of the part of the diff that this component represents
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
hashCode
public int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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. -
location
Returns the value of thelocation
record component.- Returns:
- the value of the
location
record component
-
content
Returns the value of thecontent
record component.- Returns:
- the value of the
content
record component
-