Searched defs:SUNDAY (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/time/
H A DDayOfWeek.java145 SUNDAY; enum constant in enum:DayOfWeek
442 * dateOnWed.with(SUNDAY); // four days later
/libcore/ojluni/src/main/java/sun/util/calendar/
H A DBaseCalendar.java55 public static final int SUNDAY = 1; field in class:BaseCalendar
479 return (int)(fixedDate % 7) + SUNDAY;
481 return (int)CalendarUtils.mod(fixedDate, 7) + SUNDAY;
/libcore/ojluni/src/main/java/java/util/
H A DCalendar.java450 * of the week. This field takes values <code>SUNDAY</code>,
454 * @see #SUNDAY
478 * <code>DAY_OF_WEEK = SUNDAY, DAY_OF_WEEK_IN_MONTH = -1</code>. Because
573 public final static int SUNDAY = 1; field in class:Calendar
911 * The first day of the week, with possible values <code>SUNDAY</code>,
1281 * {@link Calendar#SUNDAY SUNDAY}, ..., {@link Calendar#SATURDAY SATURDAY}.
1403 * {@link Calendar#SUNDAY} to {@link Calendar#SATURDAY}
2933 * Sets what the first day of the week is; e.g., <code>SUNDAY</code> in the U.S.,
2950 * Gets what the first day of the week is; e.g., <code>SUNDAY</cod
[all...]

Completed in 27 milliseconds