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