]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.utils.datastructures/src/org/simantics/utils/datastructures/Quad.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.utils.datastructures / src / org / simantics / utils / datastructures / Quad.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.utils.datastructures;\r
13 \r
14 /**\r
15  * A generic Quad (4-tuple) structure for containing four object instances of\r
16  * chosen types.\r
17  * \r
18  * @param <T1> type of first element\r
19  * @param <T2> type of second element\r
20  * @param <T3> type of third element\r
21  * @param <T4> type of fourth element\r
22  */\r
23 public final class Quad<T1, T2, T3, T4> {\r
24     public final T1 first;\r
25     public final T2 second;\r
26     public final T3 third;\r
27     public final T4 fourth;\r
28     private final int hash;\r
29 \r
30     public static <T1, T2, T3, T4> Quad<T1, T2, T3, T4> make(T1 t1, T2 t2, T3 t3, T4 t4) {\r
31         return new Quad<T1, T2, T3, T4>(t1, t2, t3, t4);\r
32     }\r
33 \r
34     public Quad(T1 first, T2 second, T3 third, T4 fourth) {\r
35         this.first = first;\r
36         this.second = second;\r
37         this.third = third;\r
38         this.fourth = fourth;\r
39         this.hash = makeHash();\r
40     }\r
41     \r
42     @Override\r
43     public boolean equals(Object obj) {\r
44         if (obj == null)\r
45             return false;\r
46         if (!(obj.getClass().equals(this.getClass())))\r
47             return false;\r
48         Quad<?, ?, ?, ?> other = (Quad<?, ?, ?, ?>) obj;\r
49         if (other.first != first && (other.first == null || !other.first.equals(first)))\r
50             return false;\r
51         if (other.second != second && (other.second == null || !other.second.equals(second)))\r
52             return false;\r
53         if (other.third != third && (other.third == null || !other.third.equals(third)))\r
54             return false;\r
55         if (other.fourth != fourth && (other.fourth == null || !other.fourth.equals(fourth)))\r
56             return false;\r
57         return true;\r
58     }\r
59     \r
60     @Override\r
61     public int hashCode() {\r
62         return hash;\r
63     }\r
64     \r
65     @Override\r
66     public String toString() {\r
67         return "<"+first+", "+second+", "+third+", "+fourth+">";\r
68     }\r
69     \r
70     private int makeHash() {\r
71         return (first == null ? 0 : first.hashCode()) + (second == null ? 0 : second.hashCode())*31 + (third == null ? 0 : third.hashCode())*41+ (fourth == null ? 0 : fourth.hashCode())*71;\r
72     }\r
73 }\r