private EyeInformation getEyeInformation(List<Integer> counts) {
StringBuilder bldr = new StringBuilder("E");
for (int num : counts) {
bldr.append(num);
}
EyeType type = EyeType.valueOf("E" + counts.size());
return type.getInformation(bldr.toString());
}