Package org.carrot2.util
Class RangeUtils
java.lang.Object
org.carrot2.util.RangeUtils
A helper class for performing various calculations for integer and double ranges.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic double
getDoubleMajorTicks
(double min, double max) Calculates the spacing between major (primary) "ticks" of a slider.static double
getDoubleMinorTicks
(double min, double max) Calculates the spacing between minor (secondary) "ticks" of a slider.static int
getIntMajorTicks
(int min, int max) Calculates the spacing between major (primary) "ticks" of a slider.static int
getIntMinorTicks
(int min, int max) Calculates the spacing between minor (secondary) "ticks" of a slider.
-
Constructor Details
-
RangeUtils
public RangeUtils()
-
-
Method Details
-
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 rangemax
- 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 rangemax
- 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 rangemax
- 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 rangemax
- maximum value of the range
-