Skip to content
Advertisement

Get element value from a POJO List

I have the following POJO.

JavaScript

And I create new indexes in the POJO my adding it.

JavaScript

How can I have access to any index element once created? How I would be able to access the 3rd element from 3rd row?

Advertisement

Answer

First go to the 3rd element,

then go the specific field that you want to access.

in this case. it would be arrayNotas.get(2).getDelta()

Advertisement