Home | History | Annotate | Download | only in text

Lines Matching defs:SUNDAY

58  * fmt.format(Direction.LAST, AbsoluteUnit.SUNDAY); // "last Sunday"
59 * fmt.format(Direction.THIS, AbsoluteUnit.SUNDAY); // "this Sunday"
60 * fmt.format(Direction.NEXT, AbsoluteUnit.SUNDAY); // "next Sunday"
61 * fmt.format(Direction.PLAIN, AbsoluteUnit.SUNDAY); // "Sunday"
156 * Sunday
158 SUNDAY,
306 * Specifies that relative unit is Sunday, e.g. "last Sunday",
307 * "this Sunday", "next Sunday", "in 5 Sundays".
309 SUNDAY,
495 default: // SUNDAY..SATURDAY
496 throw new UnsupportedOperationException("formatNumeric does not currently support RelativeUnit.SUNDAY..SATURDAY");
527 if ((direction == Direction.PLAIN) && (AbsoluteUnit.SUNDAY.ordinal() <= unit.ordinal() &&
530 int dateSymbolsDayOrdinal = (unit.ordinal() - AbsoluteUnit.SUNDAY.ordinal()) + Calendar.SUNDAY;
585 case SUNDAY: absunit = AbsoluteUnit.SUNDAY; break;
845 SUNDAY(null, AbsoluteUnit.SUNDAY),
868 return SUNDAY;