CollectionUtils.java 273 B

1234567891011121314
  1. package com.uas.report.util;
  2. import java.util.Collection;
  3. /**
  4. * @author sunyj
  5. * @since 2017年4月21日 下午9:43:31
  6. */
  7. public class CollectionUtils {
  8. public static boolean isEmpty(Collection<?> coll) {
  9. return (coll == null || coll.isEmpty());
  10. }
  11. }