Android Long Value Check isBlank(Long str)

Here you can find the source of isBlank(Long str)

Description

is Blank

Declaration

public static boolean isBlank(Long str) 

Method Source Code

//package com.java2s;

public class Main {

    public static boolean isBlank(String str) {
        if (null == str)
            return true;
        if ("".equals(str.trim()))
            return true;

        return false;
    }/*from w w w . j  ava 2  s.  c  om*/

    public static boolean isBlank(Long str) {
        if (null == str)
            return true;
        return false;
    }
}