Java Integer Create toInteger(String value)

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

Description

to Integer

License

Open Source License

Declaration

public static Integer toInteger(String value) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static Integer toInteger(String value) {
        if (null == value) {
            return null;
        }//from  w ww . ja  v  a  2  s. c  o  m
        value = value.trim();
        if ("null".equals(value)) {
            return null;
        }
        Double d = Double.parseDouble(value);
        return d.intValue();
    }

    public static Integer toInteger(Object value) {
        if (null == value) {
            return null;
        }
        return toInteger(String.valueOf(value));
    }
}

Related

  1. toInteger(String string)
  2. toInteger(String string, Integer deff)
  3. toInteger(String val)
  4. toInteger(String value)
  5. toInteger(String value)
  6. toInteger(String value)
  7. toInteger(String value, int _default)
  8. toInteger(String value, int defaultValue)
  9. toInteger(String value, int defaultValue)