[BAEL-8434] - Moved java stream articles to java-streams module

This commit is contained in:
amit2103
2018-08-22 23:56:27 +05:30
parent 2639324919
commit bab3a724c6
26 changed files with 189 additions and 16 deletions

View File

@@ -0,0 +1,13 @@
package com.baeldung.java_8_features;
import java.util.Arrays;
import java.util.List;
public class Detail {
private static final List<String> PARTS = Arrays.asList("turbine", "pump");
public List<String> getParts() {
return PARTS;
}
}