Interface ValueExtractorRegistry
- All Known Implementing Classes:
DefaultValueExtractors
public interface ValueExtractorRegistry
Registry of value extractors.
- Since:
- 1.2
- Author:
- graemerocher
-
Method Summary
Modifier and TypeMethodDescription<T> voidaddValueExtractor(ValueExtractorDefinition<T> valueExtractorDefinition) <T> @NonNull List<ValueExtractorDefinition<T>>findValueExtractors(@NonNull Class<T> targetType) FindsValueExtractors for the given type.
-
Method Details
-
addValueExtractor
-
findValueExtractors
@NonNull <T> @NonNull List<ValueExtractorDefinition<T>> findValueExtractors(@NonNull @NonNull Class<T> targetType) FindsValueExtractors for the given type.- Type Parameters:
T- The target type- Parameters:
targetType- The target type of the value- Returns:
- The extractor
-