Home | History | Annotate | Download | only in format

Lines Matching refs:MONTH

44     represent the month.  Depending on how many times that character is repeated
48 For the month of September:<br/>
107 This designator indicates the day of the month.
109 Examples for the 9th of the month:
155 This designator indicates the month of the year
163 public static final char MONTH = 'M';
294 int month = value.indexOf('M');
298 if (month >= 0 && day >= 0 && year >= 0) {
300 if (year < month && year < day) {
301 if (month < day) {
306 } else if (month < day) {
312 } else { // day < month
313 if (month < year) {
355 * 3 elements ({@link #DATE}, {@link #MONTH}, and {@link #YEAR}) in the order
359 * not just the day, month, and year, and not necessarily in the same
363 char[] order = new char[] {DATE, MONTH, YEAR};
377 if (!foundMonth && (c == MONTH)) {
379 order[index] = MONTH;
496 case MONTH:
531 int month = inDate.get(Calendar.MONTH);
534 return DateUtils.getMonthString(month, DateUtils.LENGTH_LONG);
536 return DateUtils.getMonthString(month, DateUtils.LENGTH_MEDIUM);
538 // Calendar.JANUARY == 0, so add 1 to month.
539 return zeroPad(month+1, count);