1 package de.fhdw.wtf.persistence.utils;
2
3 /**
4 * Contains every IntegerConstant for the Database project.
5 *
6 */
7 public final class IntegerConstants {
8 /**
9 * Constant representing the number 2.
10 */
11 public static final int TWO = 2;
12 /**
13 * Constant representing the number 3.
14 */
15 public static final int THREE = 3;
16 /**
17 * Constant representing the number 4.
18 */
19 public static final int FOUR = 4;
20 /**
21 * Constant representing the number 5.
22 */
23 public static final int FIVE = 5;
24 /**
25 * Constant representing the number 6.
26 */
27 public static final int SIX = 6;
28 /**
29 * Constant representing the number 7.
30 */
31 public static final int SEVEN = 7;
32 /**
33 * Constant representing the number 8.
34 */
35 public static final int EIGHT = 8;
36 /**
37 * Constant representing the number 10.
38 */
39 public static final int TEN = 10;
40 /**
41 * Constant representing the number 11.
42 */
43 public static final int ELEVEN = 11;
44 /**
45 * Constant representing the number 12.
46 */
47 public static final int TWELFE = 12;
48 /**
49 * Constant representing the number 15.
50 */
51 public static final int FIFTEEN = 15;
52 /**
53 * Constant representing the number 17.
54 */
55 public static final int SEVENTEEN = 17;
56 /**
57 * Constant representing the number 18.
58 */
59 public static final int EIGHTEEN = 18;
60 /**
61 * Constant representing the number 19.
62 */
63 public static final int NINETEEN = 19;
64 /**
65 * Constant representing the number 20.
66 */
67 public static final int TWENTY = 20;
68 /**
69 * Constant representing the number 22.
70 */
71 public static final int TWENTYTWO = 22;
72 /**
73 * Constant representing the number 24.
74 */
75 public static final int TWENTYFOUR = 24;
76 /**
77 * Constant representing the number 25.
78 */
79 public static final int TWENTYFIVE = 25;
80 /**
81 * Constant representing the number 26.
82 */
83 public static final int TWENTYSIX = 26;
84 /**
85 * Constant representing the number 27.
86 */
87 public static final int TWENTYSEVEN = 27;
88 /**
89 * Constant representing the number 29.
90 */
91 public static final int TWENTYNINE = 29;
92 /**
93 * Constant representing the number 32.
94 */
95 public static final int THIRTYTWO = 32;
96 /**
97 * Constant representing the number 34.
98 */
99 public static final int THIRTYFOUR = 34;
100 /**
101 * Constant representing the number 314.
102 */
103 public static final int THREEHUNDREDANDFOURTEEN = 314;
104
105 /**
106 * Constant representing the Sleeptime set to 15000.
107 */
108 public static final int SLEEPTIME = 15000;
109
110 private IntegerConstants() {
111
112 }
113 }