Java Integer Create toInt(String str)

Here you can find the source of toInt(String str)

Description

to Int

License

Apache License

Declaration

public static Integer toInt(String str) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static Integer toInt(String str) {
        return Integer.parseInt(str);
    }/*from w ww .  j av  a2 s . c  o m*/
}

Related

  1. toInt(String str)
  2. toInt(String str)
  3. toInt(String str)
  4. toInt(String str)
  5. toInt(String str)
  6. toInt(String str)
  7. toInt(String str, int defaultValue)
  8. toInt(String str, int defaultValue)
  9. toInt(String str, int defValue)