Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f287cdee043c897bf8c62ca3cfd0761696cb553b (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
/***************************************************************************
 * Copyright (c) 2004, 2005, 2006 Eike Stepper, Germany.
 * 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:
 *    Eike Stepper - initial API and implementation
 **************************************************************************/
package org.eclipse.net4j.util;


public final class Pair<T1, T2>
{
  private final T1 first;

  private final T2 second;

  public Pair(T1 first, T2 second)
  {
    this.first = first;
    this.second = second;
  }

  public T1 getFirst()
  {
    return first;
  }

  public T2 getSecond()
  {
    return second;
  }

  @Override
  public boolean equals(Object o)
  {
    if (!(o instanceof Pair)) return false;
    Pair that = (Pair) o;

    Object f1 = getFirst();
    Object f2 = that.getFirst();
    if (f1 == f2 || (f1 != null && f1.equals(f2)))
    {
      Object s1 = getSecond();
      Object s2 = that.getSecond();
      if (s1 == s2 || (s1 != null && s1.equals(s2))) return true;
    }

    return false;
  }

  @Override
  public int hashCode()
  {
    return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode());
  }

  @Override
  public String toString()
  {
    return "Pair[" + first + ", " + second + "]";
  }
}

Back to the top