There are a lot of useful new things in Java 8. E.g., I can iterate with a stream over a list of objects and then sum the values from a specific field of the Object
Object
StringListName = ObjectListName.stream().map( m -> m.toString() ).collect( Collectors.toList() );