InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of Element Annotation annotation? |
|
Answer» This annotation sets the Element for type conversion. The Element annotation must be applied at field or method level. Element( value = com.acme.User )private List<User> userList; |
|