是否对应星期 @param calendar Calendar @param week 待判断星期 @return true yes, false no
(
final Calendar calendar,
final int week
)
| 1507 | * @return {@code true} yes, {@code false} no |
| 1508 | */ |
| 1509 | public static boolean isWeek( |
| 1510 | final Calendar calendar, |
| 1511 | final int week |
| 1512 | ) { |
| 1513 | return week != -1 && week == getWeek(calendar); |
| 1514 | } |
| 1515 | |
| 1516 | // = |
| 1517 |
nothing calls this directly
no test coverage detected