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

com.afrozaar.wordpress.wpapi.v2.util.Tuple2 Maven / Gradle / Ivy

There is a newer version: 4.8.3
Show newest version
package com.afrozaar.wordpress.wpapi.v2.util;

public class Tuple2 {
    public final A a;
    public final B b;

    private Tuple2(A a, B b) {
        this.a = a;
        this.b = b;
    }

    public static  Tuple2 of(A a, B b) {
        return new Tuple2<>(a, b);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy