On Sun, 2003-11-23 at 21:53, Phil Steitz wrote: > A few weeks back, David Graham submitted code for a > CaseInsensitiveHashMap here: > > http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24537 > > This looks like a good addition to [collections] to me. > > Any objections to my coding up some tests and adding this class to the > map package? > > Phil > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >
It might be best to use an instance of o.a.c.c.decorators.TransformedMap with a lower case key transformer and a null value transformer to implement this class. Even though the posted implementation is simple, using the decorator removes the need to have the 'plumbing' code currently present -- and illustrates the use of the collections library. -Janek --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
