java.lang.Object
java.lang.Record
org.variantsync.studies.evolution.simulation.diff.components.Hunk
Record Components:
location - The location of the hunk in the file
content - 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

    Constructors
    Constructor
    Description
    Hunk(HunkLocation location, List<Line> content)
    Creates an instance of a Hunk record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the value of the content record component.
    boolean
    Indicates whether some other object is "equal to" this one.
    int
    Returns a hash code value for this object.
    Returns the value of the location record component.
    Parse this component back into a list of lines that can be added to a diff file meant as input for unix patch
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • Hunk

      public Hunk(HunkLocation location, List<Line> content)
      Creates an instance of a Hunk record class.
      Parameters:
      location - the value for the location record component
      content - the value for the content record component
  • Method Details

    • toLines

      public List<String> 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 interface IDiffComponent
      Returns:
      the lines of the part of the diff that this component represents
    • equals

      public boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • toString

      public String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • location

      public HunkLocation location()
      Returns the value of the location record component.
      Returns:
      the value of the location record component
    • content

      public List<Line> content()
      Returns the value of the content record component.
      Returns:
      the value of the content record component