Record Class FoundationDriftChecker.Entry

java.lang.Object
java.lang.Record
network.ike.plugin.scaffold.FoundationDriftChecker.Entry
Record Components:
kind - parent or property
name - the parent coordinates (groupId:artifactId) for FoundationDriftChecker.Kind.PARENT, or the property name for FoundationDriftChecker.Kind.PROPERTY
actual - the value found in the project's POM, or null when absent
expected - the value the foundation pins to
Enclosing class:
FoundationDriftChecker

public static record FoundationDriftChecker.Entry(FoundationDriftChecker.Kind kind, String name, String actual, String expected) extends Record
One drift comparison result.
  • Constructor Details

    • Entry

      public Entry(FoundationDriftChecker.Kind kind, String name, String actual, String expected)
      Creates an instance of a Entry record class.
      Parameters:
      kind - the value for the kind record component
      name - the value for the name record component
      actual - the value for the actual record component
      expected - the value for the expected record component
  • Method Details

    • state

      Classify this comparison.
      Returns:
      whether the project is aligned, missing the value, or differs from the foundation
    • isDrifted

      public boolean isDrifted()
      True when this entry indicates real drift the operator should act on (DIFFERS or ABSENT).
      Returns:
      true when not aligned
    • toString

      public final 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
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final 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.
    • kind

      Returns the value of the kind record component.
      Returns:
      the value of the kind record component
    • name

      public String name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component
    • actual

      public String actual()
      Returns the value of the actual record component.
      Returns:
      the value of the actual record component
    • expected

      public String expected()
      Returns the value of the expected record component.
      Returns:
      the value of the expected record component