New Java features

Kasia found these nice
links to some new Java features. href="http://developer.java.sun.com/developer/technicalArticles/releases/generics/">
Generics (or Templates as I normally call them), href="http://jcp.org/aboutJava/communityprocess/jsr/tiger/autoboxing.html">
Autoboxing (automatic conversion of data of primitive type to
the corresponding wrapper type), href="http://jcp.org/aboutJava/communityprocess/jsr/tiger/enhanced-for.html">
Enhanced for-loops (iterators for-loops), href="http://jcp.org/aboutJava/communityprocess/jsr/tiger/enum.html">
Enumerations (not the java Enumeration but C enum), href="http://jcp.org/aboutJava/communityprocess/jsr/tiger/static-import.html">
Static Imports (being able to import static methods and
fields).

All these seem to be very nice and are welcome.

From href="http://www.unix-girl.com/blog/archives/000703.html">www.unix-girl.com.