static bool isValidDay(Object? day) { int current = Converter.toInt(day); return (current >= 1) && (current <= 31); }