Home / Java Patterns and Pitfalls     frequal.com

JavaOne 2010 Summary

Project Coin

Performance: Java versus C

Swing Tips and Tricks

Java 2D

User Experience

JPA Best Practices

Project Jigsaw

LambdaJ

LambdaJ is a library for concisely expressing operations on collections. For example, creating a list of top speeds from a collection of cars, which would take 4-5 lines using a for loop, takes one with LambdaJ:

List speeds = extract(cars, on(Car.class).getSpeed());

Good stats were presented (min/max/avg) comparing LambdaJ against iterative code. The framework added 200% overhead, a reasonable price for concise code operating on small to medium datasets.

Java Technical Keynote

Oracle Develop Keynote

REST Security

ADF on Mobile

Java Keynote

Oracle Linux has the Nimbus theme now.

JavaFX 2.0


Last modified on 24 Sep 2010 by AO

Copyright © 2024 Andrew Oliver