com.github.leeonky.dal.runtime.PropertyAccessor Maven / Gradle / Ivy
package com.github.leeonky.dal.runtime;
import java.util.Set;
public interface PropertyAccessor {
@SuppressWarnings("unchecked")
default Object getValueByData(Data data, Object property) {
return getValue((T) data.getInstance(), property);
}
Object getValue(T instance, Object property);
Set
© 2015 - 2025 Weber Informatics LLC | Privacy Policy