Java Decimal From toDecimal(final String intValue)

Here you can find the source of toDecimal(final String intValue)

Description

to Decimal

License

Open Source License

Declaration

public static final int toDecimal(final String intValue) 

Method Source Code

//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*/
}

Related

  1. toDecimal(float value)
  2. toDecimal(int value, byte[] buffer, int offset, int length, int itemLength, boolean packed)
  3. toDecimal(long val, int places)
  4. toDecimal(String coord)