Java Number Max Value max(float value1, float value2)

Here you can find the source of max(float value1, float value2)

Description

max

License

Open Source License

Declaration

public static float max(float value1, float value2) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static float max(float value1, float value2) {
        return Math.max(value1, value2);
    }/*w  ww .  j  a  v a 2s .c  o m*/
}

Related

  1. max(float a, float b)
  2. max(float a, float b)
  3. max(float a, float b, float c)
  4. max(float a, float b, float c, float d, float e)
  5. max(float dirOffset, float min, float max)
  6. max(float value1, float value2)
  7. max(float x0, float x1)
  8. max(int a, int b)
  9. max(int a, int b)