Source of Constants.java


  1: /**
  2:    A class of public constants.
  3:    @author Frank M. Carrano, Timothy M. Henry
  4:    @version 5.0
  5: */
  6: public class Constants
  7: {
  8:    private Constants()
  9:    {
 10:    } // end private default constructor

 12:    public static final double INCHES_PER_CENTIMETER = 0.39370079;
 13:    public static final double FEET_PER_METER = 3.2808399;
 14:    public static final double MILES_PER_KILOMETER = 0.62137119;
 15: } // end Constants