Java Integer Create toInteger(String str)

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

Description

Transforma um String em Inteiro
Caso a String nao seja um Inteiro valido, retorna 0

License

Apache License

Parameter

Parameter Description
str String a ser transformada

Return

o Inteiro correspondente e String

Declaration

public static int toInteger(String str) 

Method Source Code

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

public class Main {
    /**/*from  w w  w  . j  a v  a2 s.c o  m*/
     * Transforma um String em Inteiro<br>
     * Caso a String nao seja um Inteiro valido, retorna 0
     * 
     * @param str
     * String a ser transformada
     * @return o Inteiro correspondente e String
     */
    public static int toInteger(String str) {
        return toInteger(str, 0);
    }

    /**
     * Transforma um String em Inteiro<br>
     * Caso a String nao seja um Inteiro valido, retorna o defaultValue
     * 
     * @param str
     * String a ser transformada
     * @param defaultValue
     * valor a ser retornado caso a String nao seja um Inteiro valido
     * @return o Inteiro transformado
     */
    public static int toInteger(String str, int defaultValue) {
        if (str == null)
            return defaultValue;
        try {
            return Integer.parseInt(str);
        } catch (Exception e) {
        }
        return defaultValue;
    }
}

Related

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