Помогите пожалуйста, не пойму, что не так, по подсказкам от ментора, у меня все правильно
package com.javarush.task.task05.task0510;
/*
Кошкоинициация
*/
public class Cat {
private String name = "Boris";
private int age = 3;
private int weight = 7;
private String address = "Lenina St.";
private String color = "red";
//initialize's methods
public void initialize(String name){
this.name = name;
this.age = 5;
this.weight = 4;
this.color = "Black";
// this.address = "Usvic";
}
public void initialize(String name, int weight, int age){
this.name = name;
this.weight = weight;
this.age = age;
this.color = "Orange";
}
public void initialize(String name, int age){
this.name = name;
this.age = age;
this.weight = 9;
this.color = "Blue";
}
public void initialize(int weight, String color){
this.weight = weight;
this.color = color;
this.age = 6;
}
public void initialize(int weight, String color, String address){
this.weight = weight;
this.color = color;
this.address = address;
this.age = 7;
}
public static void main(String[] args) {
}
}