Here you can find the source of toDecimal(final String intValue)
public static final int toDecimal(final String intValue)
//package com.java2s; //License from project: Open Source License public class Main { public static final int toDecimal(final String intValue) { return Integer.parseInt(intValue, 16); }/*from w ww .j a va 2 s .c o m*/ }