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

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 getPropertyNames(T instance);

    boolean isNull(T instance);
}