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

org.noear.wood.wrap.PrimaryKeyStrategy Maven / Gradle / Ivy

There is a newer version: 1.3.14
Show newest version
package org.noear.wood.wrap;

import org.noear.wood.annotation.PrimaryKey;

import java.lang.reflect.Field;

public class PrimaryKeyStrategy {

    public  boolean fieldIsPrimaryKey(Class clz, Field f) {
        PrimaryKey annotation = f.getAnnotation(PrimaryKey.class);
        return annotation != null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy