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

com.flextrade.jfixture.requests.enrichers.StringListBuilder Maven / Gradle / Ivy

Go to download

JFixture is an open source library based on the popular .NET library, AutoFixture

The newest version!
package com.flextrade.jfixture.requests.enrichers;

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

class StringListBuilder {
    public List getList(String[] strings) {
        List objectList = new ArrayList();
        Collections.addAll(objectList, strings);
        return objectList;
    }
}