org.khasanof.collector.method.checker.strategy.MethodCheckOperationStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-fluent Show documentation
Show all versions of spring-boot-starter-fluent Show documentation
Fluent - Easy Telegram Bots with Spring
The newest version!
package org.khasanof.collector.method.checker.strategy;
import java.lang.reflect.Method;
/**
* @author Nurislom
* @see org.khasanof.collector.method.checker.strategy
* @since 1/21/2024 2:19 PM
*/
public interface MethodCheckOperationStrategy {
/**
*
* @param method
* @return
*/
boolean check(Method method);
}