Here you can find the source of isNullOrEmpty(String s)
public static boolean isNullOrEmpty(String s)
//package com.java2s; public class Main { public static boolean isNullOrEmpty(String s) { return s == null || s.length() == 0; }//from ww w . j a v a 2s. co m }