return name;
}
public static String getJSONMutator(AccessibleObject object) {
String name = null;
JSONMutator jsonMutatorAnnotation = object.getAnnotation(JSONMutator.class);
if (jsonMutatorAnnotation != null) {
name = jsonMutatorAnnotation.value();
}
return name;
}