Guest User

Untitled

a guest
Nov 20th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. private List<List<Double>> test = new ArrayList<>();
  2.  
  3. this.test = mapper.convertValue(props.get("test"), new TypeReference<List<List<Double>>>() { });
  4.  
  5. this.test = mapper.convertValue(props.get("test"),
  6. mapper.getTypeFactory().constructCollectionType(List.class, Double.class));
Add Comment
Please, Sign In to add comment