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