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

develop.toolkit.base.struct.ListInMap Maven / Gradle / Ivy

package develop.toolkit.base.struct;

import java.util.LinkedList;
import java.util.List;
import java.util.function.Supplier;

/**
 * Map里有列表结构
 *
 * @author qiushui on 2020-08-13.
 */
@SuppressWarnings("unused")
public class ListInMap extends AbstractCollectionInMap> {

    private static final long serialVersionUID = -6928970809459612701L;

    public ListInMap() {
        super(LinkedList::new);
    }

    public ListInMap(Supplier> supplier) {
        super(supplier);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy