Java Integer Create toInteger(final Object o)

Here you can find the source of toInteger(final Object o)

Description

Metodo que devuelve un numero de tipo Int a partir de un String

License

Open Source License

Parameter

Parameter Description
o the object to convert

Return

parsed value

Declaration

public static int toInteger(final Object o) 

Method Source Code

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

public class Main {
    /**//from w  w w .ja v  a 2  s .  c o  m
     * Metodo que devuelve un numero de tipo Int a partir de un String
     *
     * @param o the object to convert
     * @return parsed value
     */
    public static int toInteger(final Object o) {
        return Integer.parseInt(String.valueOf(o));
    }
}

Related

  1. toInteger(byte[] bytes, int index)
  2. toInteger(byte[] input)
  3. toInteger(E val)
  4. toInteger(final byte[] data)
  5. toInteger(final Double value)
  6. toInteger(final Object value)
  7. toInteger(final String bitString)
  8. toInteger(final String integerAsString)
  9. toInteger(final String value)