Java code evaluation (IntelliJ IDE), use toString() in some point?

Johnny picture Johnny · Jan 6, 2014 · Viewed 39k times · Source

When evaluating object initialization, toString nullPointerException appear.

Method threw 'java.lang.NullPointerException' exception. Cannot evaluate XXXX.toString()

Code example which recreates this issue:

Car car = carUtils.objectMapper.readValue(new File(pathTo("carProperties.json")), Car.class); 

Why is that happens? is the evaluation done using toSting() invocations?

Answer

Johnny picture Johnny · Jan 12, 2014

I have discovered the root cause for this behavior.

You can choose in what way IntelliJ evaluation will display the data: the result can be the Object or toString evaluation. Therefore the error i had experienced, View as->toString was used, while not all the objects had toString implemented. Hope it will help someone in the future.

enter image description here

If you don't want to update it manually each time, you can change it in IntelliJ properties following this steps