Day: December 6, 2005

  • Commons Collections

    Today I had a glance at commons collections. I’m convinced, that the more mature parts of the commons are what sun forgot about. If you know and use them you’ve definitely got a competive advantage. But now for the code: public class CollectionsDemo { public static void main(String[] args) { List list= Arrays.asList(new String[]{“Hund”,”Katze”,”Huhn”}); List…