Java Integer Create toIntegerValue(String value)

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

Description

to Integer Value

License

Open Source License

Parameter

Parameter Description
value a parameter

Declaration

public static int toIntegerValue(String value) 

Method Source Code

//package com.java2s;
/**//from w w w  .  j  a  v  a2 s.  com
 *   Copyright 2012 Dr. Krusche & Partner PartG
 *
 *   AMES-Web-Service is free software: you can redistribute it and/or 
 *   modify it under the terms of the GNU General Public License 
 *   as published by the Free Software Foundation, either version 3 of 
 *   the License, or (at your option) any later version.
 *
 *   AMES- Web-Service is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
 * 
 *  See the GNU General Public License for more details. 
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this software. If not, see <http://www.gnu.org/licenses/>.
 *
 */

public class Main {
    /**
     * @param value
     * @return
     */
    public static int toIntegerValue(String value) {

        try {
            return Float.valueOf(value).intValue();
        } catch (NumberFormatException e) {
            e.printStackTrace();
        }

        finally {
        }

        return 0;

    }
}

Related

  1. toIntegerObject(boolean bool)
  2. toIntegerObject(Boolean bool, Integer trueValue, Integer falseValue, Integer nullValue)
  3. toIntegerOrNull(String s)
  4. toIntegers(String[] values)
  5. toIntegerValue(byte... bytes)
  6. toInterfacesString(Class[] classes, StringBuffer sb)
  7. toInternal(int x)
  8. toInternalClassName(String className)
  9. toInternalClassName(String name)