Interface ContextAwarePopulator<S,T,C>
-
- Type Parameters:
S- - the type of the source objectT- - the type of the destination objectC- - the type of the context object
- All Known Implementing Classes:
AsBoostItemConfigurationPopulator,AsBoostItemConfigurationReversePopulator,AsBoostRuleConfigurationPopulator,AsBoostRuleConfigurationReversePopulator,AsBoostRulePopulator,AsBoostRuleReversePopulator,AsConfigurableSearchConfigurationPopulator,AsConfigurationPopulator,AsConfigurationReversePopulator,AsFacetConfigurationPopulator,AsFacetConfigurationReversePopulator,AsFacetRangePopulator,AsFacetRangeReversePopulator,AsFacetValueConfigurationPopulator,AsFacetValueConfigurationReversePopulator,AsItemConfigurationPopulator,AsItemConfigurationReversePopulator,AsSearchConfigurationPopulator,AsSortConfigurationPopulator,AsSortConfigurationReversePopulator,AsSortExpressionPopulator,AsSortExpressionReversePopulator
public interface ContextAwarePopulator<S,T,C>Interface for a populator. A populator sets values in a target instance based on values in the source instance. Populators are similar to converters except that unlike converters the target instance must already exist.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpopulate(S source, T target, C context)Populate the target instance with values from the source instance.
-