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