Interface ArraySortedAssert<SELF extends ArraySortedAssert<SELF,​ELEMENT>,​ELEMENT>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      SELF isSorted()
      Verifies that the actual array is sorted in ascending order according to the natural ordering of its elements.
      SELF isSortedAccordingTo​(Comparator<? super ELEMENT> comparator)
      Verifies that the actual array is sorted according to the given comparator.
      Empty arrays are considered sorted whatever the comparator is.
      One element arrays are considered sorted if the element is compatible with comparator, otherwise an AssertionError is thrown.
    • Method Detail

      • isSorted

        SELF isSorted()
        Verifies that the actual array is sorted in ascending order according to the natural ordering of its elements.

        All array elements must be primitive or implement the Comparable interface and must be mutually comparable (that is, e1.compareTo(e2) must not throw a ClassCastException for any elements e1 and e2 in the array), examples :

        • a array composed of {2, 4, 6} is ok because the element type is a primitive type.
        • a array composed of {"a1", "a2", "a3"} is ok because the element type (String) is Comparable
        • a array composed of Rectangle {r1, r2, r3} is NOT ok because Rectangle is not Comparable
        • a array composed of {True, "abc", False} is NOT ok because elements are not mutually comparable (even though each element type implements Comparable)
        Empty or one element arrays are considered sorted (unless the array element type is not Comparable).

        Returns:
        this assertion object.
        Throws:
        AssertionError - if the actual array is not sorted in ascending order according to the natural ordering of its elements.
        AssertionError - if the actual array is null.
        AssertionError - if the actual array element type does not implement Comparable.
        AssertionError - if the actual array elements are not mutually Comparable.
      • isSortedAccordingTo

        SELF isSortedAccordingTo​(Comparator<? super ELEMENT> comparator)
        Verifies that the actual array is sorted according to the given comparator.
        Empty arrays are considered sorted whatever the comparator is.
        One element arrays are considered sorted if the element is compatible with comparator, otherwise an AssertionError is thrown.
        Parameters:
        comparator - the Comparator used to compare array elements
        Returns:
        this assertion object.
        Throws:
        AssertionError - if the actual array is not sorted according to the given comparator.
        AssertionError - if the actual array is null.
        NullPointerException - if the given comparator is null.
        AssertionError - if the actual array elements are not mutually comparable according to given Comparator.