Why is this error keeps on showing?
package com.codegym.task.task14.task1408;
/*
Chicken factory
*/
public class Solution {
public static void main(String[] args) {
Hen hen = HenFactory.getHen(Continent.AFRICA);
hen.getMonthlyEggCount();
}
static class HenFactory {
static Hen getHen(String continent) {
Hen hen = null;
if(continent == Continent.AFRICA)
hen = new AfricanHen();
else if(continent == Continent.NORTHAMERICA)
hen = new NorthAmericanHen();
else if(continent == Continent.EUROPE)
hen = new EuropheanHen();
else if(continent == Continent.ASIA)
hen = new AsianHen();
return hen;
}
}
}