Re: Conversion utilities

2002-11-14 Thread Janek Bogucki
Hi Travis, On Thursday 14 November 2002 4:21 am, [EMAIL PROTECTED] wrote: I also have a package of conversion classes that convert different measurements from imperial to metric and vice versa for things like Length, Pressure, Force, etc. And along with that I have a Fraction and

Re: Conversion utilities

2002-11-14 Thread Jeff Varszegi
Janek, I made an interface called Range that is supported by classes called ComparableRange etc. The ComparableRange class can use any objects that support Comparable (or, alternately, any objects with a supplied Comparator), and I also made specific versions for Date and Double to eliminate

Re: Conversion utilities

2002-11-14 Thread Henri Yandell
On Thu, 14 Nov 2002, Jeff Varszegi wrote: Janek, I made an interface called Range that is supported by classes called ComparableRange etc. The ComparableRange class can use any objects that support Comparable (or, alternately, any objects with a supplied Comparator), and I also made

Re: Conversion utilities

2002-11-14 Thread Robert Leland
Henri Yandell wrote: On Thu, 14 Nov 2002, Jeff Varszegi wrote: Janek, I made an interface called Range that is supported by classes called ComparableRange etc. The ComparableRange class can use any objects that support Comparable (or, alternately, any objects with a supplied Comparator),

RE: Re: Conversion utilities

2002-11-14 Thread travis
[EMAIL PROTECTED] Subject: Re: Conversion utilities Henri Yandell wrote: On Thu, 14 Nov 2002, Jeff Varszegi wrote: Janek, I made an interface called Range that is supported by classes called ComparableRange etc. The ComparableRange class can use any objects that support Comparable

Re: [lang] Money/Units/Quantities [was Re: Conversion utilities]

2002-11-14 Thread Stephen Colebourne
Subject: [lang] Money/Units/Quantities [was Re: Conversion utilities] http://www.dautelle.com/jade is the most well known units and quantities package. It also follows the JSR on the subject. In some ways, it would be nice to see this work brought under the Jakarta Commons group

RE: [lang] Dates/DateRanges [was Re: Re: Conversion utilities]

2002-11-14 Thread Steven Caswell
To: Jakarta Commons Developers List Subject: [lang] Dates/DateRanges [was Re: Re: Conversion utilities] blatant-self-advertising http://joda.sourceforge.net has code for handling TimePeriods and comparing dates (In fact its a complete rewrite of dates from the ground up). Only at 0.8

Conversion utilities

2002-11-13 Thread travis
I also have a package of conversion classes that convert different measurements from imperial to metric and vice versa for things like Length, Pressure, Force, etc. And along with that I have a Fraction and FractionFormat class that deals with fractions (parsing, formatting, etc). Wonder if