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

net.ttddyy.dsproxy.proxy.ObjectArrayUtils Maven / Gradle / Ivy

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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy