com.afrozaar.wordpress.wpapi.v2.util.Two Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wp-api-v2-client-java Show documentation
Show all versions of wp-api-v2-client-java Show documentation
A Java client implementation to the WordPress WP-API v2 plugin.
package com.afrozaar.wordpress.wpapi.v2.util;
public class Two {
public final A a;
public final B b;
public Two(A a, B b) {
this.a = a;
this.b = b;
}
public static Two of(A a, B b) {
return new Two<>(a, b);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy