All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.juneau.utils.Tuple2 Maven / Gradle / Ivy

// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file        *
// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance            *
// * with the License.  You may obtain a copy of the License at                                                              *
// *                                                                                                                         *
// *  http://www.apache.org/licenses/LICENSE-2.0                                                                             *
// *                                                                                                                         *
// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an  *
// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the        *
// * specific language governing permissions and limitations under the License.                                              *
// ***************************************************************************************************************************
package org.apache.juneau.utils;

import static org.apache.juneau.internal.ObjectUtils.*;

import org.apache.juneau.internal.*;

/**
 * Represents a simple tuple of 2 objects.
 *
 * 
See Also:
    *
* * @param Object 1 type. * @param Object 2 type. */ public class Tuple2 { /** * Static creator. * * @param Object 1 type. * @param Object 2 type. * @param a Object 1. * @param b Object 2. * @return A new tuple object. */ public static Tuple2 of(A a, B b) { return new Tuple2<>(a,b); } private final A a; private final B b; /** * Constructor. * * @param a Object 1. * @param b Object 2. */ public Tuple2(A a, B b) { this.a = a; this.b = b; } /** * Returns the first object in this tuple. * * @return The first object in this tuple. */ public A getA() { return a; } /** * Returns the second object in this tuple. * * @return The second object in this tuple. */ public B getB() { return b; } @Override /* Object */ public int hashCode() { return HashCode.of(a,b); } @Override /* Object */ public boolean equals(Object o) { return o instanceof Tuple2 && eq(this, (Tuple2)o, (x,y)->eq(x.a,y.a) && eq(x.b,y.b)); } }