devutility.internal.lang.models.EntityField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devutility.internal Show documentation
Show all versions of devutility.internal Show documentation
Utilities for Java development
package devutility.internal.lang.models;
import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.List;
import devutility.internal.lang.reflect.FieldUtils;
import devutility.internal.lang.reflect.MethodUtils;
public class EntityField {
private Field field;
private Method setter;
private Method getter;
public Field getField() {
return field;
}
public void setField(Field field) {
this.field = field;
}
public Method getSetter() {
return setter;
}
public void setSetter(Method setter) {
this.setter = setter;
}
public Method getGetter() {
return getter;
}
public void setGetter(Method getter) {
this.getter = getter;
}
public Object getValue(Object model) throws ReflectiveOperationException {
return getter.invoke(model);
}
public boolean containAnnotations(List annotations) {
if (FieldUtils.contain(field, annotations)) {
return true;
}
if (MethodUtils.contain(setter, annotations)) {
return true;
}
if (MethodUtils.contain(getter, annotations)) {
return true;
}
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy