Interface LocalizationPartsCombiner<T,R>

Type Parameters:
T - Type of the element which should be combined with previous combination results
R - Type of the results, i.e. type of the accumulating container.
All Superinterfaces:
Serializable

public interface LocalizationPartsCombiner<T,R> extends 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 Details

    • combine

      R combine(R accumulatedParts, T localizationPart)
    • joiningWithSpaceIfNotEmpty

      static Collector<String,?,String> 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.