Here you can find the source of asin(Number x)
public static double asin(Number x)
//package com.java2s; // Licensed under the Apache License, Version 2.0 (the "License"); public class Main { public static double asin(Number x) { return Math.asin(x.doubleValue()); }//from w ww . java 2s .c o m }