Class RangeUtils


  • public class RangeUtils
    extends Object
    A helper class for performing various calculations for integer and double ranges.
    • Constructor Detail

      • RangeUtils

        public RangeUtils()
    • Method Detail

      • getIntMinorTicks

        public static int getIntMinorTicks​(int min,
                                           int max)
        Calculates the spacing between minor (secondary) "ticks" of a slider.
        Parameters:
        min - minimum value of the range
        max - maximum value of the range
      • getIntMajorTicks

        public static int getIntMajorTicks​(int min,
                                           int max)
        Calculates the spacing between major (primary) "ticks" of a slider.
        Parameters:
        min - minimum value of the range
        max - maximum value of the range
      • getDoubleMinorTicks

        public static double getDoubleMinorTicks​(double min,
                                                 double max)
        Calculates the spacing between minor (secondary) "ticks" of a slider.
        Parameters:
        min - minimum value of the range
        max - maximum value of the range
      • getDoubleMajorTicks

        public static double getDoubleMajorTicks​(double min,
                                                 double max)
        Calculates the spacing between major (primary) "ticks" of a slider.
        Parameters:
        min - minimum value of the range
        max - maximum value of the range