Interface CacheCreator
- All Known Implementing Classes:
HorizontalCacheCreator
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Creates a
FeatureCalculationCache that accepts a particular input type.- Author:
- Owen Feehan
-
Method Summary
Modifier and TypeMethodDescription<T extends FeatureInput>
FeatureCalculationCache<T> create(Class<? extends FeatureInput> inputType) Creates aFeatureCalculationCachethat accepts a particular input type.
-
Method Details
-
create
Creates aFeatureCalculationCachethat accepts a particular input type.- Type Parameters:
T- the input-type.- Parameters:
inputType- the class corresponding to<T>.- Returns:
- a newly created instantiation of
FeatureCalculationCache.
-