MCPcopy Create free account
hub / github.com/MenoData/Time4J / getDayOfWeek

Method getDayOfWeek

base/src/main/java/net/time4j/PlainDate.java:1214–1224  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1212 * @since 3.13/4.10
1213 */
1214 public Weekday getDayOfWeek() {
1215
1216 Weekday dow = this.weekday;
1217
1218 if (dow == null) {
1219 dow = Weekday.valueOf(GregorianMath.getDayOfWeek(this.year, this.month, this.dayOfMonth));
1220 }
1221
1222 return dow;
1223
1224 }
1225
1226 /**
1227 * <p>Yields the day of year. </p>

Callers 9

getMinimumMethod · 0.95
getMaximumMethod · 0.95
addToMethod · 0.95
betweenMethod · 0.95
withDayOfWeekMethod · 0.95
createFromMethod · 0.95
setYearOfWeekdateMethod · 0.45
getValueMethod · 0.45

Calls 2

valueOfMethod · 0.95
getDayOfWeekMethod · 0.95

Tested by

no test coverage detected