Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5656c815aa1fff6b021a90e16648ffa3f9478fad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
 * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Caspar De Groot - initial API and implementation
 */
package org.eclipse.net4j.util.collection;

import org.eclipse.net4j.util.ObjectUtil;

/**
 * @author Caspar De Groot
 * @since 3.0
 */
public class Triplet<T1, T2, T3> extends Pair<T1, T2>
{
  private T3 element3;

  public Triplet()
  {
  }

  public Triplet(T1 element1, T2 element2, T3 element3)
  {
    super(element1, element2);
    this.element3 = element3;
  }

  public Triplet(Triplet<T1, T2, T3> source)
  {
    super(source.getElement1(), source.getElement2());
    element3 = source.element3;
  }

  public final T3 getElement3()
  {
    return element3;
  }

  public void setElement3(T3 element3)
  {
    this.element3 = element3;
  }

  @Override
  public boolean equals(Object obj)
  {
    if (this == obj)
    {
      return true;
    }

    if (obj instanceof Triplet<?, ?, ?>)
    {
      Triplet<?, ?, ?> that = (Triplet<?, ?, ?>)obj;
      return ObjectUtil.equals(getElement1(), that.getElement1()) //
          && ObjectUtil.equals(getElement2(), that.getElement2()) //
          && ObjectUtil.equals(element3, that.element3);
    }

    return false;
  }

  @Override
  public int hashCode()
  {
    return ObjectUtil.hashCode(getElement1()) ^ ObjectUtil.hashCode(getElement2()) ^ ObjectUtil.hashCode(element3);
  }

  @Override
  public String toString()
  {
    return "Triplet[" + getElement1() + ", " + getElement2() + ", " + element3 + "]"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
  }
}

Back to the top