I calling to method with get.bool and getting bool value and
I need to update other method which needs to get type of boolean(
Value.setValue( )) ,
Bool aa = Entry.getBool();
Value.setValue(aa );
since I using aa i getting message
The method setValue(Boolean) in the type BooleanValue is not applicable for the arguments (Bool)
how should i do this casting?
I think what he’s trying to do is convert a Boolean to boolean (the primitive). if that’s the case, this is how you could do it: