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

com.github.siwenyan.reflection.ReflectionUtils Maven / Gradle / Ivy

There is a newer version: 1.25
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy