ParseMapEntity parseMapEntity = mapEntities.get(type);
if (parseMapEntity != null) {
return parseMapEntity;
}
CKeyspace keyspace = findCKeyspace(type);
parseMapEntity = new ParseMapEntity(keyspace, type);
for (Class<?> c = type; c != Object.class; ) {
parseMapEntity.processAccessibles(this, c, parseMapEntity.parseAttributeMap);