Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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

import android.text.TextUtils;

public class Main {
    /**
     * parse value to int
     */
    public static int toInt(Object value) {
        if (value instanceof Number) {
            return ((Number) value).intValue();
        }
        return value == null ? 0 : toInt(String.valueOf(value));
    }

    /**
     * parse value to int
     */
    public static int toInt(String value) {
        return TextUtils.isEmpty(value) ? 0 : Integer.parseInt(value);
    }
}