[LIB-5] Collection empty objects,reporting and serializable
[snooker-score-api.git] / src / main / java / org / hedgecode / snooker / compare / EventComparators.java
1 /*
2  * Copyright (c) 2017. Developed by Hedgecode.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.hedgecode.snooker.compare;
18
19 import java.io.Serializable;
20 import java.util.Comparator;
21
22 import org.hedgecode.snooker.api.Event;
23
24 /**
25  * Set of Comparators for {@link Event}.
26  * 1. Sorting by Date {@link DateComparator};
27  * 2. Sorting by WorldSnookerId {@link SnookerIdComparator}.
28  *
29  * @author Dmitry Samoshin aka gotty
30  */
31 public enum EventComparators {
32
33     DATE       ( new DateComparator() ),
34     SNOOKER_ID ( new SnookerIdComparator() );
35
36     private Comparator<Event> comparator;
37
38     EventComparators(Comparator<Event> comparator) {
39         this.comparator = comparator;
40     }
41
42     public Comparator<Event> comparator() {
43         return comparator;
44     }
45
46     static class DateComparator implements Comparator<Event>, Serializable {
47
48         @Override
49         public int compare(Event event1, Event event2) {
50             return event1.startDate().compareTo(event2.startDate());
51         }
52
53     }
54
55     static class SnookerIdComparator implements Comparator<Event>, Serializable {
56
57         @Override
58         public int compare(Event event1, Event event2) {
59             return event1.worldSnookerId() - event2.worldSnookerId();
60         }
61
62     }
63
64 }