Java Utililty Methods Ceil

List of utility methods to do Ceil

Description

The list of methods to do Ceil are organized into topic(s).

Method

floatceilToQuarterMs(float f)
"rounds up" to nearest increment of 0.25, e.g.
return (float) (Math.ceil(f * 4) / 4);
intceilU(final float value)
ceil U
return (int) (value + 0.999999F);
doubleceily(double a, double precision)
Returns the smallest (closest to negative infinity) double value that is not less than the argument and is equal for at least a precision value.
return Math.ceil(a / precision) * precision;