}
static void setupSingleColumn(MappedAttribute mappedAttribute, ParseAttribute parseAttribute,
AttrOverrideMap attributeOverrides, NameMapper nameMapper, String columnNamePrefix) {
CColumn column = parseAttribute.column;
CIgnore ignore = parseAttribute.ignore;
String columnName = mappedAttribute.makeColumnName(attributeOverrides, nameMapper, columnNamePrefix, column);
boolean allowNotExists = ignore != null && ignore.notExists();
boolean ignoreTypeMismatch = ignore != null && ignore.typeMismatch();
boolean staticCol = column != null && column.isStatic();
CqlColumn cqlColumn =
allowNotExists || ignoreTypeMismatch || staticCol || mappedAttribute.lazy
? new CqlColumnSimple(columnName, parseAttribute.dataType, allowNotExists, ignoreTypeMismatch, staticCol, mappedAttribute.lazy)