-
- All Implemented Interfaces:
public interface DataProviderStrategy<DATA_HOLDER extends Object, KEY extends Object>There are use-cases when processing logic can be defined via common interface for accessing particular data. For example, consider a state which is essentially a bag of key-value pairs. Underlying implementation might be a Map, array or any other data structure. All of the can be decorated by this interface
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classDataProviderStrategy.Companion
-
Method Summary
Modifier and Type Method Description abstract ObjectgetData(DATA_HOLDER dataHolder, KEY key)-
-
Method Detail
-
getData
abstract Object getData(DATA_HOLDER dataHolder, KEY key)
-
-
-
-