package franck.eecs1030; /** * Converts amounts between different units. * * @author Franck van Breugel */ public class Converter { /** * The constant that represents the unit of centimeters. */ public static final int CENTIMETER = 1; /** * The constant that represents the unit of feet. */ public static final int FOOT = 4; /** * The constant that represents the unit of inches. */ public static final int INCH = 3; /** * The constant that represents the unit of meters. */ public static final int METER = 2; private Converter() {} }