Here you can find the source of emptyString(String str)
Parameter | Description |
---|---|
str | string a ser verificada |
public static boolean emptyString(String str)
//package com.java2s; //License from project: Apache License public class Main { /**//from ww w . j a v a2 s .co m * Verifica se a string esta nula ou vazia * * @param str * string a ser verificada * @return true caso a string seja nula ou vazia, ou possua somente espacos em branco */ public static boolean emptyString(String str) { return str == null || str.trim().length() == 0; } }