Enum DayOfWeek represents days of the week. It doesn't implement Temporal interface so it's not temporal-based. It doesn't represent a point on a timeline. It implements TemporalAccessor and TemporalAdjuster.
public class DayOfWeekExample { public static void main (String[] args) { //using a day DayOfWeek d = DayOfWeek.SATURDAY; System.out.println(d); System.out.println(d.getValue()); System.out.println(d.getDisplayName(TextStyle.FULL, Locale.FRANCE)); //there's no method DayOfWeek.now() // because it's not temporal-based