Here you can find the source of toIntegerFromObj(Object obj)
Parameter | Description |
---|---|
obj | a parameter |
public static Integer toIntegerFromObj(Object obj)
//package com.java2s; //License from project: Apache License public class Main { /**/*www . j av a 2 s . c o m*/ * Tenta transformar um obj em inteiro, caso nao consiga retorna null * @param obj * @return */ public static Integer toIntegerFromObj(Object obj) { try { return obj != null ? new Integer(obj.toString()) : null; } catch (Exception e) { } return null; } /** * Transforma um objeto em String<br> * Caso obj seja nulo retorna nulo. * * @param obj * @return */ public static String toString(Object obj) { return obj != null ? obj.toString() : null; } }