001// SPDX-FileCopyrightText: 2021 Paul Schaub <vanitasvitae@fsfe.org>
002//
003// SPDX-License-Identifier: Apache-2.0
004
005package org.pgpainless.util;
006
007public class Tuple<A, B> {
008
009    private final A a;
010    private final B b;
011
012    public Tuple(A a, B b) {
013        this.a = a;
014        this.b = b;
015    }
016
017    public A getA() {
018        return a;
019    }
020
021    public B getB() {
022        return b;
023    }
024}