Skip to content
Yani (Ioannis) Metaxas edited this page Dec 13, 2017 · 10 revisions

Welcome to the java-tools wiki!

New Feature Ideas

Update README with the method names

Reflection

Java8 Streams

private <T, S> List<S> apply(List<T> input, Function<T, S> function) { return input.stream().map(function).collect(Collectors.toList()); }

assertThat(apply(documents, Document::getPartner), containsInAnyOrder("doc1", "doc2", "doc3"));

Lambda Type References

https://github.com/benjiman/lambda-type-references

Clone this wiki locally