Here you can find the source of max(byte value, byte max)
public static byte max(byte value, byte max)
//package com.java2s; //License from project: Open Source License public class Main { public static byte max(byte value, byte max) { return value > max ? max : value; }// ww w . j a va 2 s . c o m }