Home | History | Annotate | Download | only in temporal

Lines Matching defs:dayOfWeek

84 import java.time.DayOfWeek;
102 * {@link #dayOfWeek()}, {@link #weekOfMonth()}, {@link #weekOfYear()},
205 public static final WeekFields ISO = new WeekFields(DayOfWeek.MONDAY, 4);
214 public static final WeekFields SUNDAY_START = WeekFields.of(DayOfWeek.SUNDAY, 1);
242 private final DayOfWeek firstDayOfWeek;
248 * The field used to access the computed DayOfWeek.
250 private final transient TemporalField dayOfWeek = ComputedDayOfField.ofDayOfWeekField(this);
291 DayOfWeek dow = DayOfWeek.SUNDAY.plus(weekData.firstDayOfWeek - 1);
298 * The first day-of-week defines the ISO {@code DayOfWeek} that is day 1 of the week.
315 public static WeekFields of(DayOfWeek firstDayOfWeek, int minimalDaysInFirstWeek) {
334 private WeekFields(DayOfWeek firstDayOfWeek, int minimalDaysInFirstWeek) {
387 * This method returns the first day using the standard {@code DayOfWeek} enum.
391 public DayOfWeek getFirstDayOfWeek() {
428 public TemporalField dayOfWeek() {
429 return dayOfWeek;
437 * This field is typically used with {@link WeekFields#dayOfWeek()}.
483 * This field is typically used with {@link WeekFields#dayOfWeek()}.
528 * This field is typically used with {@link WeekFields#dayOfWeek()} and
578 * This field is typically used with {@link WeekFields#dayOfWeek()} and
659 * Field type that computes DayOfWeek, WeekOfMonth, and WeekOfYear
663 * Constructors are provided to create fields for DayOfWeek, WeekOfMonth,
676 return new ComputedDayOfField("DayOfWeek", weekDef, DAYS, WEEKS, DAY_OF_WEEK_RANGE);
881 * Returns the week number computed from the reference day and reference dayOfWeek.
905 int idow = temporal.get(weekDef.dayOfWeek);