1
2 package org.objectledge.scheduler.cron;
3
4 public interface CronParserConstants {
5
6 int EOF = 0;
7 int DIGIT = 3;
8 int NUMBER = 4;
9
10 int DEFAULT = 0;
11
12 String[] tokenImage = {
13 "<EOF>",
14 "\" \"",
15 "\"//t\"",
16 "<DIGIT>",
17 "<NUMBER>",
18 "\"-\"",
19 "\"/\"",
20 "\",\"",
21 "\"*\"",
22 "\"jan\"",
23 "\"feb\"",
24 "\"mar\"",
25 "\"apr\"",
26 "\"may\"",
27 "\"jun\"",
28 "\"jul\"",
29 "\"aug\"",
30 "\"sep\"",
31 "\"oct\"",
32 "\"nov\"",
33 "\"dec\"",
34 "\"mon\"",
35 "\"tue\"",
36 "\"wed\"",
37 "\"thu\"",
38 "\"fri\"",
39 "\"sat\"",
40 "\"sun\"",
41 "\"@reboot\"",
42 "\"@yearly\"",
43 "\"@annually\"",
44 "\"@monthly\"",
45 "\"@daily\"",
46 "\"@midnight\"",
47 "\"@hourly\"",
48 "\"//n\"",
49 };
50
51 }