Get value of Property in a BeanItem based on name of property

I need to be able to get the value of a property, based on the name of the property. How do I do that?
Thank you
Freddy

The class hierarchy of the BeanItem goes this way. BeanItem implements Interface Item. Item has getProperty(“”), which returns a Property and Property has method getValue().

Thank you that worked.