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

org.jacpfx.rcp.util.CommonUtil Maven / Gradle / Ivy

There is a newer version: 2.1
Show newest version
package org.jacpfx.rcp.util;

import java.util.stream.Stream;

/**
 * Created with IntelliJ IDEA.
 * User: Andy Moncsek
 * Date: 20.09.13
 * Time: 15:37
 * All common util methods
 */
class CommonUtil {


    /**
     * Returns a stream of strings from a string array
     * @param ids
     * @return
     */
    public static Stream getStringStreamFromArray(String[] ids) {
        return Stream.of(ids);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy