Java Number Max Value max(byte value, byte max)

Here you can find the source of max(byte value, byte max)

Description

max

License

Open Source License

Declaration


public static byte max(byte value, byte max) 

Method Source Code

//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
}

Related

  1. max(byte value1, byte value2)
  2. max(double a, double b)
  3. max(double a, double b)
  4. max(double a, double b)