com.github.siwenyan.reflection.ReflectionUtils Maven / Gradle / Ivy
package com.github.siwenyan.reflection;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
public class ReflectionUtils {
public static boolean isStaticMethod(Method method){
return 0 != (method.getModifiers() & Modifier.STATIC);
}
}