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

com.anwen.mongo.handlers.collection.AnnotationHandler Maven / Gradle / Ivy

There is a newer version: 2.1.5
Show newest version
package com.anwen.mongo.handlers.collection;

import java.util.function.Function;

/**
 * 注解处理器
 * @author anwen
 * @date 2024/7/10 下午3:48
 */
public interface AnnotationHandler {

    /**
     * 获取属性值
     * @param obj 参数
     * @param func 属性
     * @return {@link R}
     * @author anwen
     * @date 2024/7/10 下午3:49
     */
    default  R getProperty(T obj, Function func){
        return func.apply(obj);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy