2324252627282930
/** Don't let anyone instantiate this class */ private PropertiesMapper() {} static String key(Method method) { Key key = method.getAnnotation(Key.class); return (key == null) ? method.getName() : key.value(); }