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 long
     */
    public static long toLong(Object value) {
        if (value instanceof Number) {
            return ((Number) value).longValue();
        }
        return value == null ? 0 : toLong(String.valueOf(value));
    }

    /**
     * parse value to long
     */
    public static long toLong(String value) {
        return TextUtils.isEmpty(value) ? 0 : Long.parseLong(value);
    }
}