(GregorianDate context)
| 475 | } |
| 476 | |
| 477 | @Override |
| 478 | public boolean test(GregorianDate context) { |
| 479 | |
| 480 | int y = context.getYear(); |
| 481 | int m = context.getMonth(); |
| 482 | int dom = context.getDayOfMonth(); |
| 483 | |
| 484 | return (GregorianMath.getDayOfWeek(y, m, dom) == this.getValue()); |
| 485 | |
| 486 | } |
| 487 | |
| 488 | /** |
| 489 | * <p>Conversion to the {@code java.time}-equivalent. </p> |
nothing calls this directly
no test coverage detected