Class ArraySort

java.lang.Object
io.deephaven.function.ArraySort

public class ArraySort extends Object
Perform array sorts that respect Deephaven null values as the lowest possible values.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    sort(byte[] data, int fromIndexInclusive, int toIndexExclusive)
     
    static void
    sort(char[] data, int fromIndexInclusive, int toIndexExclusive)
     
    static void
    sort(double[] data, int fromIndexInclusive, int toIndexExclusive)
     
    static void
    sort(float[] data, int fromIndexInclusive, int toIndexExclusive)
     
    static void
    sort(int[] data, int fromIndexInclusive, int toIndexExclusive)
     
    static void
    sort(long[] data, int fromIndexInclusive, int toIndexExclusive)
     
    static void
    sort(short[] data, int fromIndexInclusive, int toIndexExclusive)
     
    static <T> void
    sort(T[] data, int fromIndexInclusive, int toIndexExclusive)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ArraySort

      public ArraySort()
  • Method Details

    • sort

      public static void sort(char[] data, int fromIndexInclusive, int toIndexExclusive)
    • sort

      public static void sort(byte[] data, int fromIndexInclusive, int toIndexExclusive)
    • sort

      public static void sort(short[] data, int fromIndexInclusive, int toIndexExclusive)
    • sort

      public static void sort(int[] data, int fromIndexInclusive, int toIndexExclusive)
    • sort

      public static void sort(long[] data, int fromIndexInclusive, int toIndexExclusive)
    • sort

      public static void sort(float[] data, int fromIndexInclusive, int toIndexExclusive)
    • sort

      public static void sort(double[] data, int fromIndexInclusive, int toIndexExclusive)
    • sort

      public static <T> void sort(T[] data, int fromIndexInclusive, int toIndexExclusive)