Class ArraysShim


  • public class ArraysShim
    extends Object
    Shim over JDK11 methods in Arrays to support multi-release
    • Constructor Detail

      • ArraysShim

        public ArraysShim()
    • Method Detail

      • equals

        public static boolean equals​(short[] x,
                                     int xmin,
                                     int xmax,
                                     short[] y,
                                     int ymin,
                                     int ymax)
        Checks if the two arrays are equal within the given range.
        Parameters:
        x - the first array
        xmin - the inclusive minimum of the range of the first array
        xmax - the exclusive maximum of the range of the first array
        y - the second array
        ymin - the inclusive minimum of the range of the second array
        ymax - the exclusive maximum of the range of the second array
        Returns:
        true if the arrays are equal in the specified ranges