869870871872873874875876877878879
public String getTypeValue(Object statsProvider) { String type = null; AMXMetadata am = statsProvider.getClass().getAnnotation(AMXMetadata.class); if (am != null) { type = am.type(); } if (type == null) { type = statsProvider.getClass().getSimpleName(); } return type;
840841842843844845846847848849850
870871872873874875876877878879880