Interface RuleDiagnostics<T,R extends Rule<T>>

All Known Implementing Classes:
StandardRuleDiagnostics

public interface RuleDiagnostics<T,R extends Rule<T>>
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    error(R rule, T t, Throwable err)
     
    void
    failure(R rule, T t, String message, String suggestion)
     
    void
    success(R rule, T t)
     
  • Method Details

    • success

      void success(R rule, T t)
    • failure

      void failure(R rule, T t, String message, String suggestion)
    • error

      void error(R rule, T t, Throwable err)