Class JArrays.IntArrayComparator

java.lang.Object
net.algart.arrays.JArrays.IntArrayComparator
All Implemented Interfaces:
ArrayComparator, ArrayComparator32
Enclosing class:
JArrays

public static class JArrays.IntArrayComparator extends Object implements ArrayComparator32
Simple implementation of ArrayComparator, comparing elements of int[] array.
  • Constructor Summary

    Constructors
    Constructor
    Description
    IntArrayComparator(int[] array)
    Creates new comparator, comparing elements of the passed array.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    less(int first, int second)
    Returns true if, and only if, the element array[(int)first] is less than the element array[(int)second], where array is the argument of the constructor.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface net.algart.arrays.ArrayComparator32

    less
  • Constructor Details

    • IntArrayComparator

      public IntArrayComparator(int[] array)
      Creates new comparator, comparing elements of the passed array.
      Parameters:
      array - some Java array.
      Throws:
      NullPointerException - if the argument is null.
  • Method Details

    • less

      public boolean less(int first, int second)
      Returns true if, and only if, the element array[(int)first] is less than the element array[(int)second], where array is the argument of the constructor.
      Specified by:
      less in interface ArrayComparator32
      Parameters:
      first - index of the first compared element.
      second - index of the second compared element.
      Returns:
      whether the element #first is less than the element #second.