Помогите, пожалуйста, заглавные буквы перевести в строчные. Не знаю куда приткнуть этот метод toLowerCase-сразу ругается, что месяц не месяц((
package com.javarush.task.task08.task0828;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.time.Month;
import java.util.*;
import static java.time.Month.*;
import java.io.IOException;
/*
Номер месяца
*/
public class Solution {
public static void main(String[] args) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
Month s = Month.valueOf(reader.readLine());//месяц с клавиатуры
ArrayList<Month> list = new ArrayList<>();
list.add(JANUARY);
list.add(FEBRUARY);
list.add(MARCH);
list.add(APRIL);
list.add(MAY);
list.add(JUNE);
list.add(JULY);
list.add(AUGUST);
list.add(SEPTEMBER);
list.add(OCTOBER);
list.add(NOVEMBER);
list.add(DECEMBER);
int m;//цифра месяца
//m= Date.getMonth();//месяцы в цифра
//напишите тут ваш код
Iterator<Month> iterator = list.iterator();
while (iterator.hasNext()) {
Month r = iterator.next();
}
if (s == JANUARY) {
System.out.println("January is the 1 month");
} else if (s == FEBRUARY) {
System.out.println("February is the 2 month");
} else if (s == MARCH) {
System.out.println("March is the 3 month");
} else if (s == APRIL) {
System.out.println("April is the 4 month");
} else if (s == MAY) {
System.out.println("May is the 5 month");
} else if (s == JUNE) {
System.out.println("June is the 6 month");
} else if (s == JULY) {
System.out.println("July is the 7 month");
} else if (s == AUGUST) {
System.out.println("August is the 8 month");
} else if (s == SEPTEMBER) {
System.out.println("September is the 9 month");
} else if (s == OCTOBER) {
System.out.println("October is the 10 month");
} else if (s == NOVEMBER) {
System.out.println("November is the 11 month");
} else if (s == DECEMBER) {
System.out.println("December is the 12 month");
}
}
}