Home | History | Annotate | Download | only in text

Lines Matching defs:SUNDAY

57  * fmt.format(Direction.LAST, AbsoluteUnit.SUNDAY); // "last Sunday"
58 * fmt.format(Direction.THIS, AbsoluteUnit.SUNDAY); // "this Sunday"
59 * fmt.format(Direction.NEXT, AbsoluteUnit.SUNDAY); // "next Sunday"
60 * fmt.format(Direction.PLAIN, AbsoluteUnit.SUNDAY); // "Sunday"
170 * Sunday
173 SUNDAY,
348 * Specifies that relative unit is Sunday, e.g. "last Sunday",
349 * "this Sunday", "next Sunday", "in 5 Sundays".
352 SUNDAY,
552 default: // SUNDAY..SATURDAY
553 throw new UnsupportedOperationException("formatNumeric does not currently support RelativeUnit.SUNDAY..SATURDAY");
585 if ((direction == Direction.PLAIN) && (AbsoluteUnit.SUNDAY.ordinal() <= unit.ordinal() &&
588 int dateSymbolsDayOrdinal = (unit.ordinal() - AbsoluteUnit.SUNDAY.ordinal()) + Calendar.SUNDAY;
644 case SUNDAY: absunit = AbsoluteUnit.SUNDAY; break;
908 SUNDAY(null, AbsoluteUnit.SUNDAY),
931 return SUNDAY;