Interface LocalizationPartsCombiner<T,R>
- Type Parameters:
T
- Type of the element which should be combined with previous combination resultsR
- Type of the results, i.e. type of the accumulating container.
- All Superinterfaces:
Serializable
Interface providing mutable combination of previous combination result with a new element.
Combination is sort of a mutable reduction operation. That means, the returned result as well as previously combined
results are some kind of mutable container which accumulates all the elements (e.g.
StringBuilder
or
Collection
etc.).-
Method Summary
-
Method Details
-
combine
-
joiningWithSpaceIfNotEmpty
Creates collector, which joins strings with space. Strings are joined with space only if they are not empty. Otherwise, the extra space is not added.- Returns:
- the Collector, which joins strings with space.
-