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