java.lang
Class Math

java.lang.Object
  |
  +--java.lang.Math

public class Math
extends Object


Constructor Summary
Math()
           
 
Method Summary
static int abs(int i)
           
static long abs(long l)
           
static double max(double a, double b)
           
static float max(float a, float b)
           
static int max(int a, int b)
           
static long max(long a, long b)
           
static double min(double a, double b)
           
static float min(float a, float b)
           
static int min(int a, int b)
           
static long min(long a, long b)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, toString
 

Constructor Detail

Math

public Math()
Method Detail

abs

public static int abs(int i)

abs

public static long abs(long l)

max

public static int max(int a,
                      int b)

max

public static float max(float a,
                        float b)

max

public static long max(long a,
                       long b)

max

public static double max(double a,
                         double b)

min

public static int min(int a,
                      int b)

min

public static float min(float a,
                        float b)

min

public static long min(long a,
                       long b)

min

public static double min(double a,
                         double b)