Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public void SomeMethod() {
- SomeForEachMethod(parameter -> System.out.println(parameter));
- }
- public void SomeForEachMethod(Action someAction) {
- someList.stream().foreach(element -> someAction("EXAMPLE_PARAMETER"));
- }
Advertisement
Add Comment
Please, Sign In to add comment