Java tutorial
//package com.java2s; import android.graphics.PorterDuff; public class Main { private static int generateCacheKey(int color, PorterDuff.Mode mode) { int hashCode = 1; hashCode = 31 * hashCode + color; hashCode = 31 * hashCode + mode.hashCode(); return hashCode; } }