/**
* Check if the element has a @Field annotation if it does parse it and
* add it to the table object
*/
private void checkForFields(TableObject tableObject, Element columnElement) {
Field fieldAnnotation = columnElement.getAnnotation(Field.class);
if (fieldAnnotation == null) return;
/* Convert the element from a field to a type */
final Element typeElement = typeUtils.asElement(columnElement.asType());
final String type = typeElement == null ? columnElement.asType().toString()