Another repost so current code can be seen.
package com.codegym.task.task14.task1408;
/*
Chicken factory
*/
public class Solution {
public static void main(String[] args) {
Hen hen = HenFactory.getHen(Continent.NORTHAMERICA);
System.out.println(hen.getMonthlyEggCount());
System.out.println(hen.getDescription());
}
static class HenFactory {
static Hen getHen(String continent) {
Hen hen = null;
if (continent.equals(Continent.AFRICA)) hen = new AfricanHen("Africa");
else if (continent.equals(Continent.NORTHAMERICA)) hen = new NorthAmericanHen("NorthAmerica");
else if (continent.equals(Continent.ASIA)) hen = new AsianHen("Asia");
else if (continent.equals(Continent.EUROPE)) hen = new EuropeanHen("Europe");
return hen;
}
}
}