com.github.longdt.vertxorm.util.QuadConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-orm-postgresql Show documentation
Show all versions of vertx-orm-postgresql Show documentation
A simple library which provide POJO mapping Table utilities
package com.github.longdt.vertxorm.util;
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 k the 4th input argument
*/
void accept(T t, U u, V v, K k);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy