Here you can find the source of toInteger(final String value)
Parameter | Description |
---|---|
value | a parameter |
public static Integer toInteger(final String value)
//package com.java2s; //License from project: Apache License public class Main { /**//from w w w .j a v a 2 s .co m * create Intger from str. * @param value * @return */ public static Integer toInteger(final String value) { return Integer.parseInt(value); } }