import java.util.function.Predicate; class Test { Predicate p = obj -> obj != null && !obj.trim().isEmpty(); }