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

org.identityconnectors.common.Pair Maven / Gradle / Ivy

The newest version!
/**
 * ====================
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright 2008-2009 Sun Microsystems, Inc. All rights reserved.
 * Copyright 2011-2013 Tirasa. All rights reserved.
 *
 * The contents of this file are subject to the terms of the Common Development
 * and Distribution License("CDDL") (the "License"). You may not use this file
 * except in compliance with the License.
 *
 * You can obtain a copy of the License at https://oss.oracle.com/licenses/CDDL
 * See the License for the specific language governing permissions and limitations
 * under the License.
 *
 * When distributing the Covered Code, include this CDDL Header Notice in each file
 * and include the License file at https://oss.oracle.com/licenses/CDDL.
 * If applicable, add the following below this CDDL Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyrighted [year] [name of copyright owner]"
 * ====================
 */
package org.identityconnectors.common;

import java.util.Map;

/**
 * An arbitrary pair of objects. Convenient implementation of Map.Entry.
 */
public class Pair implements Map.Entry {

    public T1 first;

    public T2 second;

    public Pair() {
    }

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

    @Override
    public int hashCode() {
        int rv = 0;
        if (first != null) {
            rv ^= first.hashCode();
        }
        if (second != null) {
            rv ^= second.hashCode();
        }
        return rv;
    }

    private boolean equals(final Object o1, final Object o2) {
        if (o1 == null) {
            return o2 == null;
        } else if (o2 == null) {
            return false;
        } else {
            return o1.equals(o2);
        }
    }

    @Override
    public boolean equals(final Object object) {
        if (object instanceof Map.Entry) {
            final Pair other = (Pair) object;
            return (equals(this.first, other.first) && equals(this.second, other.second));
        }
        return false;
    }

    @Override
    public String toString() {
        return "( " + this.first + ", " + this.second + " )";
    }

    @Override
    public T1 getKey() {
        return this.first;
    }

    @Override
    public T2 getValue() {
        return this.second;
    }

    @Override
    public T2 setValue(final T2 value) {
        this.second = value;
        return this.second;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy