'Why am I having error "cannot be resolved or is not a field"?

public class CarDemo {
    public static void main(String[] args) {
        Car car1 = new Car(2014, Model.SUV, Color.RED);
        Car car2 = new Car(2022, Model.HATCHBACK, Color.PINK);
        
        car1.display();
        car2.display();
    }
}
class Car {
  
  int year;
  Model model;
  Color color;
  public Car(int yr, Model m, Color c){
    year = yr;
    model = m;
    color = c;
  }
  public void display(){
    System.out.println("Car is a " + year + " " + color + " " + model);
  }
    
}

class Model {
    enum model {SEDAN, SUV, CONVERTIBLE, HATCHBACK};
}

class Color {
    enum color {BLUE, RED, GREEN, BLACK, WHITE, VIOLET};
}

SUV cannot be resolved or is not a field

RED cannot be resolved or is not a field

HATCHBACK cannot be resolved or is not a field

PINK cannot be resolved or is not a field



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source