Here you can find the source of clampI(int a, int min, int max)
@Deprecated public static int clampI(int a, int min, int max)
//package com.java2s; //License from project: LGPL public class Main { /**/*from w w w . java 2 s. c om*/ * @deprecated use {@link clamp} instead */ @Deprecated public static int clampI(int a, int min, int max) { return a < min ? min : (a > max ? max : a); } }