OnJava8-Examples/onjava/TypeCounter.java

45 lines
1.4 KiB
Java
Raw Normal View History

// onjava/TypeCounter.java
2015-12-15 11:47:04 -08:00
// (c)2016 MindView LLC: see Copyright.txt
2015-11-15 15:51:35 -08:00
// We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
2016-01-25 18:05:55 -08:00
// Counts instances of a type family
package onjava;
2015-06-15 17:47:35 -07:00
import java.util.*;
2015-12-15 11:47:04 -08:00
public class
TypeCounter extends HashMap<Class<?>, Integer> {
2015-06-15 17:47:35 -07:00
private Class<?> baseType;
public TypeCounter(Class<?> baseType) {
this.baseType = baseType;
}
public void count(Object obj) {
Class<?> type = obj.getClass();
if(!baseType.isAssignableFrom(type))
2015-12-15 11:47:04 -08:00
throw new RuntimeException(
obj + " incorrect type: " + type +
", should be type or subtype of " + baseType);
2015-06-15 17:47:35 -07:00
countClass(type);
}
private void countClass(Class<?> type) {
Integer quantity = get(type);
put(type, quantity == null ? 1 : quantity + 1);
Class<?> superClass = type.getSuperclass();
if(superClass != null &&
baseType.isAssignableFrom(superClass))
countClass(superClass);
}
@Override
public String toString() {
StringBuilder result = new StringBuilder("{");
2015-12-15 11:47:04 -08:00
for(Map.Entry<Class<?>, Integer> pair : entrySet()) {
2015-06-15 17:47:35 -07:00
result.append(pair.getKey().getSimpleName());
result.append("=");
result.append(pair.getValue());
result.append(", ");
}
2015-12-15 11:47:04 -08:00
result.delete(result.length() - 2, result.length());
2015-06-15 17:47:35 -07:00
result.append("}");
return result.toString();
}
2015-09-07 11:44:36 -06:00
}