Interface OrderingCheck<T>

  • All Known Subinterfaces:
    Ordered<T>, PartiallyOrdered<T>
    All Known Implementing Classes:
    LogLevel

    public interface OrderingCheck<T>
    Provides functions in order to check the ordering of {@link this} and an other values. `Object.equals(java.lang.Object)` is part of the interface implicitly.
    Author:
    splitcells
    • Method Detail

      • smallerThan

        boolean smallerThan​(T other)
      • smallerThanOrEqual

        boolean smallerThanOrEqual​(T other)
      • greaterThan

        boolean greaterThan​(T other)
      • greaterThanOrEqual

        boolean greaterThanOrEqual​(T other)
      • equalz

        boolean equalz​(T other)