Interface IHasErrorLevelComparable<IMPLTYPE extends IHasErrorLevelComparable<IMPLTYPE>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default int compareTo​(IMPLTYPE aOther)  
      default boolean isEQ​(IMPLTYPE aOther)
      Check if this object is of the same level (= equal important) than the passed object.
      default boolean isGE​(IMPLTYPE aOther)
      Check if this object is of equal or higher level (= equally or more important) than the passed object.
      default boolean isGT​(IMPLTYPE aOther)
      Check if this object is of higher level (= more important) than the passed object.
      default boolean isLE​(IMPLTYPE aOther)
      Check if this object is of equal or lower level (= equally or less important) than the passed object.
      default boolean isLT​(IMPLTYPE aOther)
      Check if this object is of lower level (= less important) than the passed object.
      default boolean isNE​(IMPLTYPE aOther)
      Check if this object is of a different level (= different importance) than the passed object.