Answers for "java all null or empty"

5

java checking for null

Objects.isNull(obj) //returns true if the object is null

Objects.nonNull(obj) //returns true if object is not-null

if(Objects.nonNull(foo) && foo.something()) // Uses short-circuit as well. No Null-pointer Exceptions are thrown.
Posted by: Guest on July-18-2020
1

java string is null or empty

public class Null {
 
	public static boolean isNullOrEmpty(String str) {
        if(str != null && !str.isEmpty())
            return false;
        return true;
    }
}
Posted by: Guest on June-05-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language