Java acos acos(Long a)

Here you can find the source of acos(Long a)

Description

Acos.

License

Open Source License

Parameter

Parameter Description
a the a

Return

the double

Declaration

public static double acos(Long a) 

Method Source Code

//package com.java2s;

public class Main {
    /**//  ww  w.j av a  2  s .c  om
     * Acos.
     *
     * @param a the a
     * @return the double
     */
    public static double acos(Short a) {
        return Math.acos(a.doubleValue());
    }

    /**
     * Acos.
     *
     * @param a the a
     * @return the double
     */
    public static double acos(Integer a) {
        return Math.acos(a.doubleValue());
    }

    /**
     * Acos.
     *
     * @param a the a
     * @return the double
     */
    public static double acos(Float a) {
        return Math.acos(a.doubleValue());
    }

    /**
     * Acos.
     *
     * @param a the a
     * @return the double
     */
    public static double acos(Long a) {
        return Math.acos(a.doubleValue());
    }

    /**
     * Acos.
     *
     * @param a the a
     * @return the double
     */
    public static double acos(Double a) {
        return Math.acos(a);
    }
}

Related

  1. acos(float value)
  2. acos(float value)
  3. acos(float x)
  4. acos(int f)
  5. acos(Integer a)
  6. acos(Number x)
  7. acos_v2(double x)
  8. acosh(double a)
  9. acosh(double x)