Uses of Class
com.aoapps.cron.Matcher
-
-
Uses of Matcher in com.aoapps.cron
Subclasses of Matcher in com.aoapps.cron Modifier and Type Class Description static classMatcher.AsteriskMatches any value.static classMatcher.ListMatches any of a list.static classMatcher.RangeMatches a specific range.static classMatcher.StepMatches a step.static classMatcher.ValueMatches a single value.Methods in com.aoapps.cron that return Matcher Modifier and Type Method Description MatcherMatcherSchedule. getDayOfMonth()MatcherMatcherSchedule. getDayOfWeek()Note: Sunday is 0, not 1 like Calendar.MatcherMatcherSchedule. getHour()MatcherMatcherSchedule. getMinute()MatcherMatcherSchedule. getMonth()Note: months are 1-12 like cron, not 0-11 like Calendar.static MatcherMatcher. parseDayOfMonth(String str)Parses a dayOfMonth matcher.static MatcherMatcher. parseDayOfWeek(String str)Parses a dayOfWeek matcher.static MatcherMatcher. parseHour(String str)Parses a hour matcher.static MatcherMatcher. parseMatcher(String str, int minimum, int maximum, int modulus, Map<String,Integer> nameMap)Parses a cron value, supporting lists, asterisk, and ranges, and steps.static MatcherMatcher. parseMinute(String str)Parses a minute matcher.static MatcherMatcher. parseMonth(String str)Parses a month matcher.Constructors in com.aoapps.cron with parameters of type Matcher Constructor Description MatcherSchedule(Matcher minute, Matcher hour, Matcher dayOfMonth, Matcher month, Matcher dayOfWeek)Step(Matcher matcher, int step)Constructor parameters in com.aoapps.cron with type arguments of type Matcher Constructor Description List(Collection<Matcher> list)
-