Record Class ValidationResult

java.lang.Object
java.lang.Record
ru.cg.webbpm.studio.subsystems.bpmn.jbpm_web_editor.validator.ValidationResult

public record ValidationResult(List<String> errors, List<String> warns) extends Record
Author:
r.latypov
  • Constructor Details

    • ValidationResult

      public ValidationResult(List<String> errors, List<String> warns)
      Creates an instance of a ValidationResult record class.
      Parameters:
      errors - the value for the errors record component
      warns - the value for the warns record component
  • Method Details

    • createEmpty

      public static ValidationResult createEmpty()
    • hasErrors

      public boolean hasErrors()
    • hasWarns

      public boolean hasWarns()
    • 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.
    • errors

      public List<String> errors()
      Returns the value of the errors record component.
      Returns:
      the value of the errors record component
    • warns

      public List<String> warns()
      Returns the value of the warns record component.
      Returns:
      the value of the warns record component