[LIB-9] Separate chesshog-hedgefish module
[chesshog.git] / src / main / java / org / hedgecode / chess / img / board / SquarePair.java
1 /*
2  * Copyright (c) 2018-2019. 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.chess.img.board;
18
19 import java.awt.image.BufferedImage;
20 import java.util.Objects;
21
22 /**
23  *
24  *
25  * @author Dmitry Samoshin aka gotty
26  */
27 public class SquarePair<T> {
28
29     private final T dark;
30     private final T light;
31
32     SquarePair(T dark, T light) {
33         this.dark = dark;
34         this.light = light;
35     }
36
37     public T getDark() {
38         return dark;
39     }
40
41     public T getLight() {
42         return light;
43     }
44
45     @Override
46     public boolean equals(Object o) {
47         if (!(o instanceof SquarePair)) {
48             return false;
49         }
50         SquarePair<?> that = (SquarePair<?>) o;
51
52         return Objects.equals(this.dark, that.dark)
53                 && Objects.equals(this.light, that.light);
54     }
55
56     @Override
57     public int hashCode() {
58         return (dark == null ? 0 : dark.hashCode())
59                 ^ (light == null ? 0 : light.hashCode());
60     }
61
62     public static SquarePair<BufferedImage> create(BufferedImage dark, BufferedImage light) {
63         return new SquarePair<>(dark, light);
64     }
65
66 }