Java String Empty emptyString(String str)

Here you can find the source of emptyString(String str)

Description

Verifica se a string esta nula ou vazia

License

Apache License

Parameter

Parameter Description
str string a ser verificada

Return

true caso a string seja nula ou vazia, ou possua somente espacos em branco

Declaration

public static boolean emptyString(String str) 

Method Source Code

//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;
    }
}

Related

  1. emptyString(final String string)
  2. emptyString(Object s)
  3. emptyString(String s)
  4. emptyString(String s)
  5. emptyString(String str)
  6. emptyString2Null(String stringValue)
  7. emptyStringIfNull(String s)
  8. emptyStringIfNull(String string)
  9. emptyStrings()