是否对应天数 @param calendar Calendar @param day 待判断天数 @return true yes, false no
(
final Calendar calendar,
final int day
)
| 1410 | * @return {@code true} yes, {@code false} no |
| 1411 | */ |
| 1412 | public static boolean isDay( |
| 1413 | final Calendar calendar, |
| 1414 | final int day |
| 1415 | ) { |
| 1416 | return day != -1 && day == getDay(calendar); |
| 1417 | } |
| 1418 | |
| 1419 | // = |
| 1420 |
nothing calls this directly
no test coverage detected