Index: mojo/public/java/org/chromium/mojo/system/Pair.java |
diff --git a/mojo/public/java/org/chromium/mojo/system/Pair.java b/mojo/public/java/org/chromium/mojo/system/Pair.java |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b6b498f85c4df7ae4d503b23efdd5541373dfe57 |
--- /dev/null |
+++ b/mojo/public/java/org/chromium/mojo/system/Pair.java |
@@ -0,0 +1,55 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+package org.chromium.mojo.system; |
+ |
+import java.util.Objects; |
+ |
+/** |
+ * A pair of object. |
+ * |
+ * @param <F> Type of the first element. |
+ * @param <S> Type of the second element. |
+ */ |
+public class Pair<F, S> { |
+ |
+ public final F first; |
+ public final S second; |
+ |
+ /** |
+ * Dedicated constructor. |
+ * |
+ * @param first the first element of the pair. |
+ * @param second the second element of the pair. |
+ */ |
+ public Pair(F first, S second) { |
+ this.first = first; |
+ this.second = second; |
+ } |
+ |
+ @Override |
+ public boolean equals(Object o) { |
+ if (!(o instanceof Pair)) { |
+ return false; |
+ } |
+ Pair<?, ?> p = (Pair<?, ?>) o; |
+ return Objects.equals(p.first, first) && Objects.equals(p.second, second); |
+ } |
+ |
+ @Override |
+ public int hashCode() { |
+ return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode()); |
+ } |
+ |
+ /** |
+ * Helper method for creating a pair. |
+ * |
+ * @param a the first element of the pair. |
+ * @param b the second element of the pair. |
+ * @return the pair containing a and b. |
+ */ |
+ public static <A, B> Pair<A, B> create(A a, B b) { |
+ return new Pair<A, B>(a, b); |
+ } |
+} |