{
PersistedCollectionValue collection = new PersistedCollectionValue();
for(MetaValue child : value.getElements())
{
PersistedValue persistedValue = createPersistedValue(child, child.getMetaType());
collection.addValue(persistedValue);
}
return collection;
}
/**