Here you can find the source of getStringStreamFromArray(String... ids)
Parameter | Description |
---|---|
ids | a parameter |
public static Stream<String> getStringStreamFromArray(String... ids)
//package com.java2s; //License from project: Apache License import java.util.stream.Stream; public class Main { /**// www . ja v a 2 s . c om * Returns a stream of strings from a string array * @param ids * @return */ public static Stream<String> getStringStreamFromArray(String... ids) { return Stream.of(ids); } }