Package de.xima.fc.common.data
Interface IDataStore.IDataStoreSupplier
-
- Enclosing interface:
- IDataStore<K,V>
public static interface IDataStore.IDataStoreSupplier
Like aSupplier
for aIDataStore
, but with the correct type parameters. Needed because Java does not have higher-kinded types, so we cannot use a genericSupplier
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <K,V>
IDataStore<K,V>create()
-
-
-
Method Detail
-
create
<K,V> IDataStore<K,V> create()
-
-