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

com.sagframe.sagacity.sqltoy.plus.FiledMappingStrategy Maven / Gradle / Ivy

There is a newer version: 5.6.22.jre8
Show newest version
package com.sagframe.sagacity.sqltoy.plus;

import java.lang.reflect.Field;
import java.util.Arrays;

public interface FiledMappingStrategy {

    String getColumnName(Class clazz, String filedName);

    default String getEntityName(Class clazz) {
        return clazz.getSimpleName();
    }

    default String[] getEntityFields(Class clazz) {
        return Arrays.stream(clazz.getDeclaredFields()).map(Field::getName).toArray(String[]::new);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy