Interface Mergeable<T>

All Known Implementing Classes:
DistributionStatisticConfig

public interface Mergeable<T>
Based off of org.springframework.beans.Mergeable
  • Method Summary

    Modifier and Type Method Description
    T merge​(T parent)
    Merge the current value set with that of the supplied object.
  • Method Details

    • merge

      T merge​(T parent)
      Merge the current value set with that of the supplied object. The supplied object is considered the parent, and values in the callee's value set must override those of the supplied object.
      Parameters:
      parent - the object to merge with
      Returns:
      the result of the merge operation