net.ttddyy.dsproxy.proxy.ObjectArrayUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datasource-proxy Show documentation
Show all versions of datasource-proxy Show documentation
Provide a datasource proxy that can inject your own logic into all queries.
package net.ttddyy.dsproxy.proxy;
/**
* @author Tadaya Tsuyukubo
*/
public class ObjectArrayUtils {
public static boolean isFirstArgString(Object[] args) {
return args != null && args.length >= 1 && args[0] instanceof String;
}
}