是否对应月份 @param calendar Calendar @param month 待判断月份 @return true yes, false no
(
final Calendar calendar,
final int month
)
| 1313 | * @return {@code true} yes, {@code false} no |
| 1314 | */ |
| 1315 | public static boolean isMonth( |
| 1316 | final Calendar calendar, |
| 1317 | final int month |
| 1318 | ) { |
| 1319 | return month != -1 && month == getMonth(calendar); |
| 1320 | } |
| 1321 | |
| 1322 | // = |
| 1323 |
nothing calls this directly
no test coverage detected