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

com.github.leeonky.dal.runtime.JavaArrayDALCollectionFactory Maven / Gradle / Ivy

package com.github.leeonky.dal.runtime;

import com.github.leeonky.util.CollectionHelper;

import java.util.stream.Collectors;

public class JavaArrayDALCollectionFactory extends CollectionDALCollection {
    public JavaArrayDALCollectionFactory(Object array) {
        super(CollectionHelper.toStream(array).collect(Collectors.toList()));
    }
}