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

com.rocketlabs.sellercenterapi.core.utils.Helper Maven / Gradle / Ivy

package com.rocketlabs.sellercenterapi.core.utils;

public class Helper {

    /**
     * Convert a list of parameters into a suitable parameter
     *
     * @param param list of the items of the parameter
     * @return API compliant string
     */
    public static String toParam(Iterable param) {
        return "[" + String.join(",", param) + "]";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy