List<String> stringList = objectList.stream()
.map(Object::toString)
.collect(Collectors.toList());
List<String> stringList = objectList.stream()
.map(Object::toString)
.collect(Collectors.toList());