Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.annotation.SuppressLint;

public class Main {

    @SuppressLint("UseValueOf")
    static public boolean isEmptyInt(int v) {
        Integer t = new Integer(v);
        return t == null ? true : false;
    }
}