java if not null code example

Example 1: check if string is null or empty java

if(str != null && !str.isEmpty()) { /* do your stuffs here */ }

Example 2: java string is null or empty

public class Null {
 
	public static boolean isNullOrEmpty(String str) {
        if(str != null && !str.isEmpty())
            return false;
        return true;
    }
}

Example 3: 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.

Tags:

Java Example