Record Class ValidationIssue

java.lang.Object
java.lang.Record
org.jpedal.arlington.validate.ValidationIssue
Record Components:
path - The path describing where in the COS tree this issue occurred, e.g. Trailer/Root/Pages/Kids[0]/Resources/Font/F1.
arlingtonObject - The Arlington TSV object name that was being validated against when this issue was found, e.g. "PageObject".
message - Description of the issue.

public record ValidationIssue(ValidationIssue.Severity severity, String path, String arlingtonObject, String message) extends Record
A single issue that was found while validating.
  • Constructor Details

    • ValidationIssue

      public ValidationIssue(ValidationIssue.Severity severity, String path, String arlingtonObject, String message)
      Creates an instance of a ValidationIssue record class.
      Parameters:
      severity - the value for the severity record component
      path - the value for the path record component
      arlingtonObject - the value for the arlingtonObject record component
      message - the value for the message record component
  • Method Details

    • toString

      public String toString()
      Specified by:
      toString in class Record
    • 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.
    • severity

      public ValidationIssue.Severity severity()
      Returns the value of the severity record component.
      Returns:
      the value of the severity record component
    • path

      public String path()
      Returns the value of the path record component.
      Returns:
      the value of the path record component
    • arlingtonObject

      public String arlingtonObject()
      Returns the value of the arlingtonObject record component.
      Returns:
      the value of the arlingtonObject record component
    • message

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