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

com.quhaodian.user.utils.ListUtils Maven / Gradle / Ivy

There is a newer version: 1.8.7
Show newest version
package com.quhaodian.user.utils;

import java.util.ArrayList;
import java.util.List;

/**
 * Created by cng19 on 2017/6/26.
 */
public class ListUtils {

    public static  List list(T t) {
        List result = new ArrayList();
        if (t != null) {
            result.add(t);
        }
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy