boolean timeUUID = isTimeUUID(context, field);
Method[] accessors = entityIntrospector.findAccessors(entityClass, field);
final Codec simpleCodec = codecFactory.parseSimpleField(context);
final Class<?> cql3ValueType = codecFactory.determineCQL3ValueType(simpleCodec, timeUUID);
PropertyType type = SIMPLE;
PropertyMeta propertyMeta = factory().objectMapper(context.getCurrentObjectMapper()).type(type)
.propertyName(context.getCurrentPropertyName()).cqlColumnName(context.getCurrentCQL3ColumnName())
.entityClassName(context.getCurrentEntityClass().getCanonicalName()).accessors(accessors)
.consistencyLevels(context.getCurrentConsistencyLevels()).field(field).timeuuid(timeUUID)