Java Integer Create toInteger(final String value)

Here you can find the source of toInteger(final String value)

Description

create Intger from str.

License

Apache License

Parameter

Parameter Description
value a parameter

Declaration

public static Integer toInteger(final String value) 

Method Source Code

//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);
    }
}

Related

  1. toInteger(final Double value)
  2. toInteger(final Object o)
  3. toInteger(final Object value)
  4. toInteger(final String bitString)
  5. toInteger(final String integerAsString)
  6. toInteger(final String value)
  7. toInteger(int value)
  8. toInteger(int value)
  9. toInteger(int[] arr)