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

org.leo.aws.ddb.utils.Tuple Maven / Gradle / Ivy

There is a newer version: 1.0.21
Show newest version
package org.leo.aws.ddb.utils;

import java.util.List;
import java.util.Objects;
import java.util.function.BiFunction;

public final class Tuple implements ITuple {
    private final A first;
    private final B second;

    Tuple(final A first, final B second) {
        this.first = first;
        this.second = second;
    }

    public A _1() {
        return this.first;
    }

    public B _2() {
        return this.second;
    }

    public Tuple _1(final A updatedVal) {
        return new Tuple<>(updatedVal, second);
    }

    public Tuple _2(final B updatedVal) {
        return new Tuple<>(first, updatedVal);
    }


    public  Tuple map(final BiFunction> mapper) {
        return mapper.apply(first, second);
    }

    public  Tuple3 append(final C third) {
        return Tuples.of(first, second, third);
    }

    public Iterable toIterable() {
        return List.of(first, second);
    }

    @Override
    public String toString() {
        return "Tuple{" +
                "first=" + first +
                ", second=" + second +
                '}';
    }

    @Override
    public boolean equals(final Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        final Tuple tuple = (Tuple) o;
        return Objects.equals(first, tuple.first) &&
                Objects.equals(second, tuple.second);
    }

    @Override
    public int hashCode() {
        return Objects.hash(first, second);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy