io.github.stewseo.client.util.QuadConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yelp-fusion-client Show documentation
Show all versions of yelp-fusion-client Show documentation
java client to build api objects, handle http transport, and parse/deserialize/serialize json to/from json
package io.github.stewseo.client.util;
@FunctionalInterface
public interface QuadConsumer {
/**
* Performs this operation on the given arguments.
*
* @param t the first input argument
* @param u the second input argument
* @param v the third input argument
* @param x the fourth input argument
*/
void accept(T t, U u, V v, X x);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy