/*
* All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
*/
package cn.ponfee.disjob.common.date;
import java.io.Serializable;
import java.text.ParseException;
import java.util.*;
/**
* Provides a parser and evaluator for unix-like cron expressions. Cron
* expressions provide the ability to specify complex time combinations such as
* "At 8:00am every Monday through Friday" or "At 1:30am every
* last Friday of the month".
* <p>
* Cron expressions are comprised of 6 required fields and one optional field
* separated by white space. The fields respectively are described as follows:
* </p>
* <table>
* <caption>Examples of cron expressions and their meanings.</caption>
* <tr>
* <th>Field Name</th>
* <th> </th>
* <th>Allowed Values</th>
* <th> </th>
* <th>Allowed Special Characters</th>
* </tr>
* <tr>
* <td><code>Seconds</code></td>
* <td> </td>
* <td><code>0-59</code></td>
* <td> </td>
* <td><code>, - * /</code></td>
* </tr>
* <tr>
* <td><code>Minutes</code></td>
* <td> </td>
* <td><code>0-59</code></td>
* <td> </td>
* <td><code>, - * /</code></td>
* </tr>
* <tr>
* <td><code>Hours</code></td>
* <td> </td>
* <td><code>0-23</code></td>
* <td> </td>
* <td><code>, - * /</code></td>
* </tr>
* <tr>
* <td><code>Day-of-month</code></td>
* <td> </td>
* <td><code>1-31</code></td>
* <td> </td>
* <td><code>, - * ? / L W</code></td>
* </tr>
* <tr>
* <td><code>Month</code></td>
* <td> </td>
* <td><code>0-11 or JAN-DEC</code></td>
* <td> </td>
* <td><code>, - * /</code></td>
* </tr>
* <tr>
* <td><code>Day-of-Week</code></td>
* <td> </td>
* <td><code>1-7 or SUN-SAT</code></td>
* <td> </td>
* <td><code>, - * ? / L #</code></td>
* </tr>
* <tr>
* <td><code>Year (Optional)</code></td>
* <td> </td>
* <td><code>empty, 1970-2199</code></td>
* <td> </td>
* <td><code>, - * /</code></td>
* </tr>
* </table>
* <p>
* The '*' character is used to specify all values. For example, "*"
* in the minute field means "every minute".
* </p>
* <p>
* The '?' character is allowed for the day-of-month and day-of-week fields. It
* is used to specify 'no specific value'. This is useful when you need to
* specify something in one of the two fields, but not the other.
* <p>
* The '-' character is used to specify ranges For example "10-12" in
* the hour field means "the hours 10, 11 and 12".
* <p>
* The ',' character is used to specify additional values. For example
* "MON,WED,FRI" in the day-of-week field means "the days Monday,
* Wednesday, and Friday".
* </p>
* <p>
* The '/' character is used to specify increments. For example "0/15"
* in the seconds field means "the seconds 0, 15, 30, and 45". And
* "5/15" in the seconds field means "the seconds 5, 20, 35, and
* 50". Specifying '*' before the '/' is equivalent to specifying 0 is
* the value to start with. Essentially, for each field in the expression, there
* is a set of numbers that can be turned on or off. For seconds and minutes,
* the numbers range from 0 to 59. For hours 0 to 23, for days of the month 0 to
* 31, and for months 0 to 11 (JAN to DEC). The "/" character simply helps you turn
* on every "nth" value in the given set. Thus "7/6" in the
* month field only turns on month "7", it does NOT mean every 6th
* month, please note that subtlety.
* </p>
* <p>
* The 'L' character is allowed for the day-of-month and day-of-week fields.
* This character is short-hand for "last", but it has different
* meaning in each of the two fields. For example, the value "L" in
* the day-of-month field means "the last day of the month" - day 31
* for January, day 28 for February on non-leap years. If used in the
* day-of-week field by itself, it simply means "7" or
* "SAT". But if used in the day-of-week field after another value, it
* means "the last xxx day of the month" - for example "6L"
* means "the last friday of the month". You can also specify an offset
* from the last day of the month, such as "L-3" which would mean the third-to-last
* day of the calendar month. <i>When using the 'L' option, it is important not to
* specify lists, or ranges of values, as you'll get confusing/unexpected results.</i>
* </p>
* <p>
* The 'W' character is allowed for the day-of-month field. This character
* is used to specify the weekday (Monday-Friday) nearest the given day. As an
* example, if you were to specify "15W" as the value for the
* day-of-month field, the meaning is: "the nearest weekday to the 15th of
* the month". So if the 15th is a Saturday, the trigger will fire on
* Friday the 14th. If the 15th is a Sunday, the trigger will fire on Monday the
* 16th. If the 15th is a Tuesday, then it will fire on Tuesday the 15th.
* However if you specify "1W" as the value for day-of-month, and the
* 1st is a Saturday, the trigger will fire on Monday the 3rd, as it will not
* 'jump' over the boundary of a month's days. The 'W' character can only be
* specified when the day-of-month is a single day, not a range or list of days.
* </p>
* <p>
* The 'L' and 'W' characters can also be combined for the day-of-month
* expression to yield 'LW', which translates to "last weekday of the
* month".
* </p>
* <p>
* The '#' character is allowed for the day-of-week field. This character is
* used to specify "the nth" XXX day of the month. For example, the
* value of "6#3" in the day-of-week field means the third Friday of
* the month (day 6 = Friday and "#3" = the 3rd one in the month).
* Other examples: "2#1" = the first Monday of the month and
* "4#5" = the fifth Wednesday of the month. Note that if you specify
* "#5" and there is not 5 of the given day-of-week in the month, then
* no firing will occur that month. If the '#' character is used, there can
* only be one expression in the day-of-week field ("3#1,6#3" is
* not valid, since there are two expressions).
* </p>
* <!--The 'C' character is allowed for the day-of-month and day-of-week fields.
* This character is short-hand for "calendar". This means values are
* calculated against the associated calendar, if any. If no calendar is
* associated, then it is equivalent to having an all-inclusive calendar. A
* value of "5C" in the day-of-month field means "the first day included by the
* calendar on or after the 5th". A value of "1C" in the day-of-week field
* means "the first day included by the calendar on or after Sunday".-->
* <p>
* The legal characters and the names of months and days of the week are not
* case sensitive.
*
* <p>
* <b>NOTES:</b>
* </p>
* <ul>
* <li>Support for specifying both a day-of-week and a day-of-month value is
* not complete (you'll need to use the '?' character in one of these fields).
* </li>
* <li>Overflowing ranges is supported - that is, having a larger number on
* the left hand side than the right. You might do 22-2 to catch 10 o'clock
* at night until 2 o'clock in the morning, or you might have NOV-FEB. It is
* very impor
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
本项目是一款基于Java的分布式任务调度与计算框架设计源码,包含1112个文件,涵盖702个Java源文件、88个JavaScript文件、80个HTML文件、64个XML配置文件、42个CSS样式文件、29个PNG图片文件、18个YAML文件、15个GIF图片文件、13个VM虚拟机文件、8个导入文件以及其它类型文件。该框架具备任务分片、执行快照保存、任务暂停与恢复、失败重试、任务编排与广播等高级功能,适用于构建高效、可靠的分布式计算系统。
资源推荐
资源详情
资源评论
收起资源包目录
基于Java的分布式任务调度与计算框架设计源码 (1124个子文件)
RedisAtomicCounter.java.bak 3KB
build.bat 725B
mvnw.cmd 7KB
my.cnf 135B
style.css 129KB
bootstrap.min.css 118KB
style.min.css 97KB
animate.min.css 46KB
font-awesome.min.css 30KB
ry-ui.css 24KB
skins.css 21KB
bootstrap-editable.css 21KB
layer.css 20KB
summernote.css 19KB
select2.css 17KB
select2-bootstrap.min.css 16KB
jasny-bootstrap.css 16KB
select2.min.css 15KB
jasny-bootstrap.min.css 14KB
fileinput.css 13KB
bootstrap-select.css 13KB
bootstrap-datetimepicker.css 12KB
bootstrap-datetimepicker.min.css 11KB
bootstrap-select.min.css 11KB
fileinput.min.css 10KB
smart_wizard_all.min.css 10KB
bootstrap-table.min.css 9KB
laydate.css 8KB
zTreeStyle.css 8KB
zTreeStyle.css 7KB
zTreeStyle.css 6KB
jquery.contextMenu.min.css 6KB
style.css 5KB
cropper.css 5KB
zen-checkbox.css 4KB
login.css 4KB
cropper.min.css 4KB
login.min.css 3KB
jquery.layout-latest.css 3KB
bootstrap-duallistbox.css 2KB
custom.css 2KB
bootstrap-duallistbox.min.css 2KB
bootstrap-tagsinput.css 1KB
jquery.jsonview.css 1KB
default.min.css 1KB
bootstrap-tagsinput-typeahead.css 1017B
.editorconfig 259B
fontawesome-webfont.eot 162KB
iconfont.eot 53KB
glyphicons-halflings-regular.eot 20KB
summernote.eot 12KB
spring.factories 156B
spring.factories 154B
spring.factories 150B
spring.factories 149B
spring.factories 148B
spring.factories 148B
spring.factories 147B
spring.factories 146B
zTreeStandard.gif 5KB
zTreeStandard.gif 5KB
metro.gif 4KB
loading-sm.gif 3KB
loading.gif 2KB
loading.gif 2KB
loading-upload.gif 2KB
loading.gif 847B
loading.gif 381B
loading.gif 381B
loading.gif 381B
left_menu.gif 216B
line_conn.gif 45B
line_conn.gif 45B
line_conn.gif 45B
.gitignore 892B
main.html 54KB
edit.html 30KB
icon.html 26KB
ie.html 23KB
instance.html 15KB
profile.html 15KB
index-topnav.html 14KB
build.html 13KB
server.html 13KB
index.html 12KB
add.html 11KB
user.html 11KB
include.html 10KB
edit.html 10KB
add.html 10KB
edit.html 10KB
job.html 9KB
worker.html 9KB
gen.html 9KB
skin.html 9KB
lock.html 9KB
edit.html 8KB
cache.html 8KB
role.html 7KB
add.html 7KB
共 1124 条
- 1
- 2
- 3
- 4
- 5
- 6
- 12
资源评论
lly202406
- 粉丝: 2574
- 资源: 5432
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 嵌入式开发概述及其常用编程语言介绍
- 5G模组升级刷模块救砖以及5G模组资料路由器固件
- C183579-123578-c1235789.jpg
- Qt5.14 绘画板 Qt Creator C++项目
- python实现Excel表格合并
- Java实现读取Excel批量发送邮件.zip
- 【java毕业设计】商城后台管理系统源码(springboot+vue+mysql+说明文档).zip
- 【java毕业设计】开发停车位管理系统(调用百度地图API)源码(springboot+vue+mysql+说明文档).zip
- 星耀软件库(升级版).apk.1
- 基于Django后端和Vue前端的多语言购物车项目设计源码
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功