Here you can find the source of ceil(Short a)
Parameter | Description |
---|---|
a | the a |
public static double ceil(Short a)
//package com.java2s; public class Main { /**//from w w w. j a v a2 s . c om * Ceil. * * @param a the a * @return the double */ public static double ceil(Short a) { return Math.ceil(a.doubleValue()); } /** * Ceil. * * @param a the a * @return the double */ public static double ceil(Integer a) { return Math.ceil(a.doubleValue()); } /** * Ceil. * * @param a the a * @return the double */ public static double ceil(Float a) { return Math.ceil(a.doubleValue()); } /** * Ceil. * * @param a the a * @return the double */ public static double ceil(Long a) { return Math.ceil(a.doubleValue()); } /** * Ceil. * * @param a the a * @return the double */ public static double ceil(Double a) { return Math.ceil(a); } }