MCPcopy Create free account
hub / github.com/afkT/DevUtils / isDay

Method isDay

lib/DevApp/src/main/java/dev/utils/common/DateUtils.java:1412–1417  ·  view source on GitHub ↗

是否对应天数 @param calendar Calendar @param day 待判断天数 @return true yes, false no

(
            final Calendar calendar,
            final int day
    )

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 3

getDayMethod · 0.95
getCalendarMethod · 0.95
parseLongMethod · 0.95

Tested by

no test coverage detected