}
oneToManyCache.put(typeMirror.toString(), tableObject);
TypeElement childColumnElement = elementUtils.getTypeElement(typeMirror.toString());
tableColumn.setType(getClassName(childColumnElement, getPackageName(childColumnElement)));
} else if (tableColumn.getSqlType() == SqliteType.UNKNOWN) {
@SuppressWarnings("ConstantConditions")
Table annotation = typeElement.getAnnotation(Table.class);
if (annotation == null) {
logger.e(String.format("%s in %s needs to be marked as a blob or should be "
+ "annotated with @Table", columnElement.toString(), tableObject.getTableName()));
}