316317318319320321322323324325326
return name; } public static String getJSONName(AccessibleObject object) { String name = null; JSONName jsonNameAnnotation = object.getAnnotation(JSONName.class); if (jsonNameAnnotation != null) { name = jsonNameAnnotation.value(); } return name; }