()
| 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> |
no test coverage detected