Here you can find the source of max(float value1, float value2)
public static float max(float value1, float value2)
//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*/ }