Create four (4) Java classes named Color, Model, Car, and CarDemo.
In the Color class, create an enum named Color that consists of six (6) colors of your choice.
In the Model class, create an enum named Model that contains the following values: SEDAN, SUV, CONVERTIBLE, and HATCHBACK.
In the...