Is there a substitute for: entity.getValue()

Hi,

while migrating to JMIX I noticed, that there is no entity.getValue(STRING) method any more.
We can only use the getter of the columns by name like .getColumnName1().
So it is hard coded then.

In Cuba we have implemented a dynamic way to detect which column is needed,
based on user selections/settings, entity.getValue(userSelectedColumn)
But without getValue(STRING) that is not possible any more, which would block the migration of an app.

Is there any way substitution for that method getValue()?

And the same for the method: getValueEx()…

regards
Roland

found it: EntityValues…