I am just create a One generic method using Method Reflection API. In This Method I am trying to get a particulate method(getter method / setter method) value but I am stuck I don't know how to do this. I am Abel to get all the method Name using Method Reflection API but not Abel to get value of that method. So please help me.
here is my code......
/*
propertyNames List is contain two records.
and that records are two different EntityName(Variable Name)
ex. in my class i have declared two Entity(Variable)
private Integer productId;
private Integer bomBucket;
so propertyNames List is contain [productId , bomBucket] this two records.
*/
public <T>void fillList(List<String> propertyNames , T clas){
try{
for(Object entity : entities.keySet()){
if(propertyNames != null && propertyNames.size() > 0){
Method[] methodList = clas.getClass().getMethods();
Method methodName;
for (String propertyName : propertyNames) {
for(Method method : methodList){
if(method.getName().trim().startsWith("set")){
if(propertyName.trim().equalsIgnoreCase(method.getName().substring(3, method.getName().trim().length()))){
methodName = clas.getClass().getMethod(method.getName().trim(),new Class[]{Integer.class});
System.out.println("HERE I GET METHOD NAME ::: " + methodName.getName());
/*
* here one by one i am getting all the Setter methods name from the class .
* but i want a that Setter methods values. Not return type.
*/
}
}
}
}
}
}
}catch (Exception e) {
e.printStackTrace();
}
}