Java asin asin(Integer a)

Here you can find the source of asin(Integer a)

Description

Asin.

License

Open Source License

Parameter

Parameter Description
a the a

Return

the double

Declaration

public static double asin(Integer a) 

Method Source Code

//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);
    }
}

Related

  1. asin(double arg)
  2. asin(final double x)
  3. asin(float value)
  4. asin(float x)
  5. asin(int f)
  6. asin(Number x)
  7. asin_core(double x)
  8. asinScaled(double value)