Here you can find the source of minOfThree(final long a, final long b, final long c)
private static final long minOfThree(final long a, final long b, final long c)
//package com.java2s; // Licensed under the terms of the New BSD License. Please see associated LICENSE file for terms. public class Main { private static final long minOfThree(final long a, final long b, final long c) { long minimum; minimum = a;/*w ww .ja v a 2 s .c o m*/ if (b < minimum) { minimum = b; } if (c < minimum) { minimum = c; } return minimum; } }