Extract the inner most value when a wrapper type is used within another wrapper type. For example, given the following:
{{Optional<IntegerProperty> prop;}}
First unwrap {{Optional}} to get the JavaFX property, then unwrap the {{IntegerProperty}} to get the integer value.
|