System.out.println("The month of today's date is = "+month);
System.out.println("The integer equivalent of this month as obtained from the date is = "+integerEquivalentOfMonth);
System.out.println("The integer equivalent of the date as obtained from the Month is also = "+month.value());
//Get the weekday
final Weekday weekDayOfThisDate = today.weekday();
System.out.println("The weekday of this date is = "+weekDayOfThisDate);
//Get the day of the date for it's month
System.out.println("The day of the date as a day in this date's month(1-31) is = "+today.dayOfMonth());