Uses of Class
org.threeten.bp.DayOfWeek

Packages that use DayOfWeek
org.threeten.bp The main API for dates, times, instants, and durations. 
org.threeten.bp.temporal Access to date and time using fields and units. 
org.threeten.bp.zone Support for time-zones and their rules. 
 

Uses of DayOfWeek in org.threeten.bp
 

Fields in org.threeten.bp with type parameters of type DayOfWeek
static TemporalQuery<DayOfWeek> DayOfWeek.FROM
          Simulate JDK 8 method reference DayOfWeek::from.
 

Methods in org.threeten.bp that return DayOfWeek
static DayOfWeek DayOfWeek.from(TemporalAccessor temporal)
          Obtains an instance of DayOfWeek from a temporal object.
 DayOfWeek ZonedDateTime.getDayOfWeek()
          Gets the day-of-week field, which is an enum DayOfWeek.
 DayOfWeek OffsetDateTime.getDayOfWeek()
          Gets the day-of-week field, which is an enum DayOfWeek.
 DayOfWeek LocalDateTime.getDayOfWeek()
          Gets the day-of-week field, which is an enum DayOfWeek.
 DayOfWeek LocalDate.getDayOfWeek()
          Gets the day-of-week field, which is an enum DayOfWeek.
 DayOfWeek DayOfWeek.minus(long days)
          Returns the day-of-week that is the specified number of days before this one.
static DayOfWeek DayOfWeek.of(int dayOfWeek)
          Obtains an instance of DayOfWeek from an int value.
 DayOfWeek DayOfWeek.plus(long days)
          Returns the day-of-week that is the specified number of days after this one.
static DayOfWeek DayOfWeek.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DayOfWeek[] DayOfWeek.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of DayOfWeek in org.threeten.bp.temporal
 

Methods in org.threeten.bp.temporal that return DayOfWeek
 DayOfWeek WeekFields.getFirstDayOfWeek()
          Gets the first day-of-week.
 

Methods in org.threeten.bp.temporal with parameters of type DayOfWeek
static TemporalAdjuster TemporalAdjusters.dayOfWeekInMonth(int ordinal, DayOfWeek dayOfWeek)
          Returns the day-of-week in month adjuster, which returns a new date in the same month with the ordinal day-of-week.
static TemporalAdjuster TemporalAdjusters.firstInMonth(DayOfWeek dayOfWeek)
          Returns the first in month adjuster, which returns a new date in the same month with the first matching day-of-week.
static TemporalAdjuster TemporalAdjusters.lastInMonth(DayOfWeek dayOfWeek)
          Returns the last in month adjuster, which returns a new date in the same month with the last matching day-of-week.
static TemporalAdjuster TemporalAdjusters.next(DayOfWeek dayOfWeek)
          Returns the next day-of-week adjuster, which adjusts the date to the first occurrence of the specified day-of-week after the date being adjusted.
static TemporalAdjuster TemporalAdjusters.nextOrSame(DayOfWeek dayOfWeek)
          Returns the next-or-same day-of-week adjuster, which adjusts the date to the first occurrence of the specified day-of-week after the date being adjusted unless it is already on that day in which case the same object is returned.
static WeekFields WeekFields.of(DayOfWeek firstDayOfWeek, int minimalDaysInFirstWeek)
          Obtains an instance of WeekFields from the first day-of-week and minimal days.
static TemporalAdjuster TemporalAdjusters.previous(DayOfWeek dayOfWeek)
          Returns the previous day-of-week adjuster, which adjusts the date to the first occurrence of the specified day-of-week before the date being adjusted.
static TemporalAdjuster TemporalAdjusters.previousOrSame(DayOfWeek dayOfWeek)
          Returns the previous-or-same day-of-week adjuster, which adjusts the date to the first occurrence of the specified day-of-week before the date being adjusted unless it is already on that day in which case the same object is returned.
 

Uses of DayOfWeek in org.threeten.bp.zone
 

Methods in org.threeten.bp.zone that return DayOfWeek
 DayOfWeek ZoneOffsetTransitionRule.getDayOfWeek()
          Gets the day-of-week of the transition.
 

Methods in org.threeten.bp.zone with parameters of type DayOfWeek
static ZoneOffsetTransitionRule ZoneOffsetTransitionRule.of(Month month, int dayOfMonthIndicator, DayOfWeek dayOfWeek, LocalTime time, boolean timeEndOfDay, ZoneOffsetTransitionRule.TimeDefinition timeDefnition, ZoneOffset standardOffset, ZoneOffset offsetBefore, ZoneOffset offsetAfter)
          Obtains an instance defining the yearly rule to create transitions between two offsets.
 



Copyright © 2007–2014 ThreeTen.org. All rights reserved.