Interface IComparable<DATATYPE>

    • Method Detail

      • isGT

        default boolean isGT​(@Nonnull
                             DATATYPE aOther)
        Parameters:
        aOther - value to compare to
        Returns:
        true if this value is greater than the provided values, false if not.
        Since:
        8.6.5
      • isGE

        default boolean isGE​(@Nonnull
                             DATATYPE aOther)
        Parameters:
        aOther - value to compare to
        Returns:
        true if this value is greater or equal than the provided values, false if not.
        Since:
        8.6.5
      • isLT

        default boolean isLT​(@Nonnull
                             DATATYPE aOther)
        Parameters:
        aOther - value to compare to
        Returns:
        true if this value is lower than the provided values, false if not.
        Since:
        8.6.5
      • isLE

        default boolean isLE​(@Nonnull
                             DATATYPE aOther)
        Parameters:
        aOther - value to compare to
        Returns:
        true if this value is lower or equal than the provided values, false if not.
        Since:
        8.6.5
      • isEQ

        default boolean isEQ​(@Nonnull
                             DATATYPE aOther)
        Parameters:
        aOther - value to compare to
        Returns:
        true if the values are equal, false otherwise.
        Since:
        8.6.5
      • isNE

        default boolean isNE​(@Nonnull
                             DATATYPE aOther)
        Parameters:
        aOther - value to compare to
        Returns:
        true if the values are not equal, false otherwise.
        Since:
        8.6.5