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

jetbrick.util.tuple.Tuple3 Maven / Gradle / Ivy

/**
 * Copyright 2013-2016 Guoqiang Chen, Shanghai, China. All rights reserved.
 *
 *   Author: Guoqiang Chen
 *    Email: [email protected]
 *   WebURL: https://github.com/subchen
 *
 * Licensed 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 jetbrick.util.tuple;

import java.io.Serializable;

public class Tuple3 implements Serializable {
    private static final long serialVersionUID = 1L;
    private T1 v1;
    private T2 v2;
    private T3 v3;

    public Tuple3() {
    }

    public Tuple3(T1 v1, T2 v2, T3 v3) {
        this.v1 = v1;
        this.v2 = v2;
        this.v3 = v3;
    }

    public T1 v1() {
        return v1;
    }

    public T2 v2() {
        return v2;
    }

    public T3 v3() {
        return v3;
    }

    public void v1(T1 value) {
        this.v1 = value;
    }

    public void v2(T2 value) {
        this.v2 = value;
    }

    public void v3(T3 value) {
        this.v3 = value;
    }

    @SuppressWarnings("serial")
    public Tuple3 unmodifiedTuple3() {
        return new Tuple3(v1, v2, v3) {
            @Override
            public void v1(T1 value) {
                throw new UnsupportedOperationException();
            }

            @Override
            public void v2(T2 value) {
                throw new UnsupportedOperationException();
            }

            @Override
            public void v3(T3 value) {
                throw new UnsupportedOperationException();
            }
        };
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if ((o == null) || (getClass() != o.getClass())) {
            return false;
        }

        Tuple3 tuple3 = (Tuple3) o;

        if (v1 != null ? !v1.equals(tuple3.v1) : tuple3.v1 != null) {
            return false;
        }
        if (v2 != null ? !v2.equals(tuple3.v2) : tuple3.v2 != null) {
            return false;
        }
        if (v3 != null ? !v3.equals(tuple3.v3) : tuple3.v3 != null) {
            return false;
        }

        return true;
    }

    @Override
    public int hashCode() {
        int result = v1 != null ? v1.hashCode() : 0;
        result = 31 * result + (v2 != null ? v2.hashCode() : 0);
        result = 31 * result + (v3 != null ? v3.hashCode() : 0);
        return result;
    }

    @Override
    public String toString() {
        return "Tuple{v1=" + v1 + ", v2=" + v2 + ", v3=" + v3 + '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy