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

Method isMinute

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

是否对应分钟 @param calendar Calendar @param minute 待判断分钟 @return true yes, false no

(
            final Calendar calendar,
            final int minute
    )

Source from the content-addressed store, hash-verified

1701 * @return {@code true} yes, {@code false} no
1702 */
1703 public static boolean isMinute(
1704 final Calendar calendar,
1705 final int minute
1706 ) {
1707 return minute != -1 && minute == getMinute(calendar);
1708 }
1709
1710 // =
1711

Callers

nothing calls this directly

Calls 3

getMinuteMethod · 0.95
getCalendarMethod · 0.95
parseLongMethod · 0.95

Tested by

no test coverage detected