Is collection empty, and all of its elements are empty
import java.util.Collection;
import java.util.Iterator;
public class Utils {
public static <T> boolean isEmpty(Collection<T> c) {
if (c == null || c.size() == 0) {
return true;
}
for (Iterator<T> iter = c.iterator(); iter.hasNext();) {
if (iter.next() != null) {
return false;
}
}
return true;
}
}
Home
Java Book
Runnable examples
Java Book
Runnable examples
Collection Collection:
- Fill a collection
- Get the difference of two collections
- Get the min value within a collection
- Is collection empty, and all of its elements are empty
- Make a Collection Read-Only
- Make a collection an immutable collection
- Sort custom class and user defined Comparator