/**
   A class of public constants.
   @author Frank M. Carrano, Timothy M. Henry
   @version 5.0
*/
public class Constants
{
   private Constants()
   {
   } // end private default constructor

   public static final double INCHES_PER_CENTIMETER = 0.39370079;
   public static final double FEET_PER_METER = 3.2808399;
   public static final double MILES_PER_KILOMETER = 0.62137119;
} // end Constants
