1 | public final class DateTickMarkPosition implements Serializable {↵ | | 1 | public final class ChartChangeEventType implements Serializable {↵
|
|
2 | /** For serialization. */↵ | | 2 | /** For serialization. */↵
|
3 | private static final long serialVersionUID = 2540750672764537240L;↵ | | 3 | private static final long serialVersionUID = 5481917022435735602L;↵
|
4 | ↵ | | 4 | ↵
|
5 | /** Start of period. */↵ | | 5 | /** GENERAL. */↵
|
6 | public static final DateTickMarkPosition START↵ | | 6 | public static final ChartChangeEventType GENERAL ↵
|
7 | = new DateTickMarkPosition("DateTickMarkPosition.START");↵ | | 7 | = new ↵
|
|
8 | /** Middle of period. */↵ | | |
|
9 | public static final DateTickMarkPosition MIDDLE↵ | | 8 | ChartChangeEventType("ChartChangeEventType.GENERAL");↵
|
|
| | | 9 | /** NEW_DATASET. */↵
|
| | | 10 | public static final ChartChangeEventType NEW_DATASET ↵
|
10 | = new DateTickMarkPosition("DateTickMarkPosition.MIDDLE");↵ | | 11 | = new ↵
|
|
11 | /** End of period. */↵ | | |
|
12 | public static final DateTickMarkPosition END↵ | | |
|
13 | = new DateTickMarkPosition("DateTickMarkPosition.EN↵ | | 12 | ChartChangeEventType("ChartChangeEventType.NEW_DATASET");↵
|
|
| | | 13 | /** DATASET_UPDATED. */↵
|
| | | 14 | public static final ChartChangeEventType DATASET_UPDATED↵
|
14 | D");↵ | | 15 | = new ChartChangeEventType("ChartChangeEventType.DATASET_UPDATED");↵
|
|
15 | /** The name. */↵ | | 16 | /** The name. */↵
|
16 | private String name;↵ | | 17 | private String name;↵
|
|
17 | /**↵ | | 18 | /**↵
|
18 | * Private constructor.↵ | | 19 | * Private constructor.↵
|
19 | *↵ | | 20 | *↵
|
20 | * @param name the name.↵ | | 21 | * @param name the name.↵
|
21 | */↵ | | 22 | */↵
|
22 | private DateTickMarkPosition(String name) {↵ | | 23 | private ChartChangeEventType(String name) {↵
|
23 | this.name = name;↵ | | 24 | this.name = name;↵
|
24 | }↵ | | 25 | }↵
|
|
25 | /**↵ | | 26 | /**↵
|
26 | * Returns a string representing the object.↵ | | 27 | * Returns a string representing the object.↵
|
27 | *↵ | | 28 | *↵
|
28 | * @return The string.↵ | | 29 | * @return The string.↵
|
29 | */↵ | | 30 | */↵
|
30 | public String toString() {↵ | | 31 | public String toString() {↵
|
31 | return this.name;↵ | | 32 | return this.name;↵
|
32 | }↵ | | 33 | }↵
|
|
33 | /**↵ | | 34 | /**↵
|
34 | * Returns true if this object is equal to the specified ↵ | | 35 | * Returns true if this object is equal to the specified ↵
|
35 | * object, and false otherwise.↵ | | 36 | * object, and false otherwise.↵
|
36 | *↵ | | 37 | *↵
|
37 | * @param obj the other object.↵ | | 38 | * @param obj the object (null permitted).↵
|
38 | *↵ | | 39 | *↵
|
39 | * @return A boolean.↵ | | 40 | * @return A boolean.↵
|
40 | */↵ | | 41 | */↵
|
41 | public boolean equals(Object obj) {↵ | | 42 | public boolean equals(Object obj) {↵
|
|
42 | if (this == obj) {↵ | | 43 | if (this == obj) {↵
|
43 | return true;↵ | | 44 | return true;↵
|
44 | }↵ | | 45 | }↵
|
45 | if (!(obj instanceof DateTickMarkPosition)) {↵ | | 46 | if (!(obj instanceof ChartChangeEventType)) {↵
|
46 | return false;↵ | | 47 | return false;↵
|
47 | }↵ | | 48 | }↵
|
48 | DateTickMarkPosition position = (DateTickMarkPosition) obj;↵ | | 49 | ChartChangeEventType that = (ChartChangeEventType) obj;↵
|
49 | if (!this.name.equals(position.toString())) {↵ | | 50 | if (!this.name.equals(that.toString())) {↵
|
50 | return false;↵ | | 51 | return false;↵
|
51 | }↵ | | 52 | }↵
|
52 | return true;↵ | | 53 | return true;↵
|
| | | 54 | }↵
|
53 | }↵ | | 55 | ↵
|
54 | ↵ | | 56 | /**↵
|
| | | 57 | * Returns a hash code value for the object.↵
|
| | | 58 | *↵
|
| | | 59 | * @return The hashcode↵
|
| | | 60 | */↵
|
| | | 61 | public int hashCode() {↵
|
| | | 62 | return this.name.hashCode();↵
|
| | | 63 | }↵
|
|
55 | /**↵ | | 64 | /**↵
|
56 | * Ensures that serialization returns the unique instances.↵ | | 65 | * Ensures that serialization returns the unique instances.↵
|
57 | * ↵ | | 66 | * ↵
|
58 | * @return The object.↵ | | 67 | * @return The object.↵
|
59 | * ↵ | | 68 | * ↵
|
60 | * @throws ObjectStreamException if there is a problem.↵ | | 69 | * @throws ObjectStreamException if there is a problem.↵
|
61 | */↵ | | 70 | */↵
|
62 | private Object readResolve() throws ObjectStreamException {↵ | | 71 | private Object readResolve() throws ObjectStreamException {↵
|
63 | if (this.equals(DateTickMarkPosition.START)) {↵ | | 72 | if (this.equals(↵
|
64 | return DateTickMarkPosition.START↵ | | 73 | ChartChangeEventType.GENERAL)) {↵
|
65 | ;↵ | | 74 | return ChartChangeEventType.GENERAL;↵
|
66 | }↵ | | 75 | }↵
|
67 | else if (this.equals(DateTickMarkPosition.MIDDLE)) {↵ | | 76 | else if (this.equals(↵
|
68 | return DateTickMarkPosition.MIDDLE↵ | | 77 | ChartChangeEventType.NEW_DATASET)) {↵
|
69 | ;↵ | | 78 | return ChartChangeEventType.NEW_DATASET;↵
|
70 | } ↵ | | 79 | }↵
|
71 | else if (this.equals(DateTickMarkPosition.END)) {↵ | | 80 | else if (this.equals(↵
|
72 | return DateTickMarkPosition.EN↵ | | 81 | ChartChangeEventType.DATASET_UPDATED)) {↵
|
73 | D;↵ | | 82 | return ChartChangeEventType.DATASET_UPDATED;↵
|
74 | } ↵ | | 83 | }↵
|
75 | return null;↵ | | 84 | return null;↵
|
76 | | | 85 |
|