Class Floats


  • public class Floats
    extends java.lang.Object
    Utilities for manipulating float objects and values.
    Author:
    Garret Wilson
    • Constructor Summary

      Constructors 
      Constructor Description
      Floats()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static float checkRange​(float value, float rangeMin, float rangeMax)
      Checks to make sure that a given value is within the given range.
      • Methods inherited from class java.lang.Object

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

      • Floats

        public Floats()
    • Method Detail

      • checkRange

        public static float checkRange​(float value,
                                       float rangeMin,
                                       float rangeMax)
        Checks to make sure that a given value is within the given range.
        Parameters:
        value - The value to check.
        rangeMin - The minimum range value, inclusive.
        rangeMax - The maximum range value, inclusive.
        Returns:
        The given value.
        Throws:
        java.lang.IllegalArgumentException - if the value is less than the range minimum or greater than the range maximum.