Here you can find the source of getGreen(int parHex)
public static int getGreen(int parHex)
//package com.java2s; //License from project: Apache License public class Main { /**Get green from hex*/ public static int getGreen(int parHex) { return (parHex >> 8) & 0xFF; }/*from w ww .ja v a 2 s .c o m*/ }