Here you can find the source of clampColor(int c)
public static int clampColor(int c)
//package com.java2s; //License from project: Open Source License public class Main { public static int clampColor(int c) { return c < 0 ? 0 : c > 255 ? 255 : c; }//from ww w.j av a 2 s .com }