All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sql.assistant.util.ListUtil Maven / Gradle / Ivy

package org.sql.assistant.util;

import java.util.List;

/**
 * List 工具
 *
 * @author menfre
 */
public class ListUtil {
    public static boolean isEmpty(List list) {
        return list == null || list.isEmpty();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy