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

com.fastchar.utils.FastMethodUtils Maven / Gradle / Ivy

package com.fastchar.utils;

import java.lang.reflect.Method;

public class FastMethodUtils {

    public static boolean isOverride(Method declaredMethod) {
        try {
            declaredMethod.getDeclaringClass().getSuperclass().getDeclaredMethod(declaredMethod.getName());
            return true;
        } catch (NoSuchMethodException ignored) {}
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy