Type Conversion
When setting properties, BeanUtil converts the type of provided value to match the destination. For this purpose, it uses Type converter utility.
Getting properties always return an Object
. If you need to cast it to some type, you may use TypeConverterManager#convertType
. The following snippet shows the usage:
Last updated